Skip to content

Commit d74527a

Browse files
dragoonismichaelcullum
authored andcommitted
Markdown Syntax Highlighting (#860)
* Markdown Syntax Highlighting * Markdown Syntax Highlighting * Markdown Syntax Highlighting
1 parent 99f3160 commit d74527a

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

accepted/PSR-16-simple-cache.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ An instance of CacheInterface corresponds to a single collection of cache items
134134
and is equivalent to a "Pool" in PSR-6. Different CacheInterface instances MAY be backed by the same
135135
datastore, but MUST be logically independent.
136136

137-
``` php
137+
~~~php
138138
<?php
139139

140140
namespace Psr\SimpleCache;
@@ -249,10 +249,12 @@ interface CacheInterface
249249
*/
250250
public function has($key);
251251
}
252-
```
252+
~~~
253253

254254
### 2.2 CacheException
255-
```
255+
~~~php
256+
257+
<?php
256258
namespace Psr\SimpleCache;
257259

258260
/**
@@ -261,11 +263,11 @@ namespace Psr\SimpleCache;
261263
interface CacheException
262264
{
263265
}
264-
```
266+
~~~
265267

266268
### 2.3 InvalidArgumentException
267269

268-
```
270+
~~~php
269271
<?php
270272

271273
namespace Psr\SimpleCache;
@@ -279,4 +281,4 @@ namespace Psr\SimpleCache;
279281
interface InvalidArgumentException extends CacheException
280282
{
281283
}
282-
```
284+
~~~

0 commit comments

Comments
 (0)