summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Dragoonis <dragoonis@gmail.com>2017-01-04 23:36:25 +0000
committerMichael Cullum <m@michaelcullum.com>2017-01-04 23:36:25 +0000
commitd74527a5ba34ced264db04359600526becc0974b (patch)
tree3710cb01279cdd576494dae37b3f0cb81fdf8f20
parent99f31604f67f5654ea14abbfc10dd1907fa61d96 (diff)
downloadfig-standards-origin/master.zip
fig-standards-origin/master.tar.gz
fig-standards-origin/master.tar.bz2
Markdown Syntax Highlighting (#860)HEADorigin/masterorigin/HEADmaster
* Markdown Syntax Highlighting * Markdown Syntax Highlighting * Markdown Syntax Highlighting
-rw-r--r--accepted/PSR-16-simple-cache.md14
1 files changed, 8 insertions, 6 deletions
diff --git a/accepted/PSR-16-simple-cache.md b/accepted/PSR-16-simple-cache.md
index c90dfb0..10f963a 100644
--- a/accepted/PSR-16-simple-cache.md
+++ b/accepted/PSR-16-simple-cache.md
@@ -134,7 +134,7 @@ An instance of CacheInterface corresponds to a single collection of cache items
and is equivalent to a "Pool" in PSR-6. Different CacheInterface instances MAY be backed by the same
datastore, but MUST be logically independent.
-``` php
+~~~php
<?php
namespace Psr\SimpleCache;
@@ -249,10 +249,12 @@ interface CacheInterface
*/
public function has($key);
}
-```
+~~~
### 2.2 CacheException
-```
+~~~php
+
+<?php
namespace Psr\SimpleCache;
/**
@@ -261,11 +263,11 @@ namespace Psr\SimpleCache;
interface CacheException
{
}
-```
+~~~
### 2.3 InvalidArgumentException
-```
+~~~php
<?php
namespace Psr\SimpleCache;
@@ -279,4 +281,4 @@ namespace Psr\SimpleCache;
interface InvalidArgumentException extends CacheException
{
}
-```
+~~~