diff options
author | Paul Dragoonis <dragoonis@gmail.com> | 2017-01-04 23:36:25 +0000 |
---|---|---|
committer | MichaelC <m@michaelcullum.com> | 2017-01-04 23:42:52 +0000 |
commit | d735f9ee04de57c5ca7dddf24e882fe7bb315e5b (patch) | |
tree | 274faf800f8f124f33306c4b265e0ee67bb6fb6d | |
parent | a1d4f875c4a85896cde4c2015629c4dba04c6ae7 (diff) | |
download | fig-standards-origin/website.zip fig-standards-origin/website.tar.gz fig-standards-origin/website.tar.bz2 |
Markdown Syntax Highlighting (#860)origin/website
* Markdown Syntax Highlighting
* Markdown Syntax Highlighting
* Markdown Syntax Highlighting
-rw-r--r-- | accepted/PSR-16-simple-cache.md | 14 |
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 { } -``` +~~~ |