File tree 1 file changed +8
-6
lines changed
1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ An instance of CacheInterface corresponds to a single collection of cache items
134
134
and is equivalent to a "Pool" in PSR-6. Different CacheInterface instances MAY be backed by the same
135
135
datastore, but MUST be logically independent.
136
136
137
- ``` php
137
+ ~~~ php
138
138
<?php
139
139
140
140
namespace Psr\SimpleCache;
@@ -249,10 +249,12 @@ interface CacheInterface
249
249
*/
250
250
public function has($key);
251
251
}
252
- ```
252
+ ~~~
253
253
254
254
### 2.2 CacheException
255
- ```
255
+ ~~~ php
256
+
257
+ <?php
256
258
namespace Psr\SimpleCache;
257
259
258
260
/**
@@ -261,11 +263,11 @@ namespace Psr\SimpleCache;
261
263
interface CacheException
262
264
{
263
265
}
264
- ```
266
+ ~~~
265
267
266
268
### 2.3 InvalidArgumentException
267
269
268
- ```
270
+ ~~~ php
269
271
<?php
270
272
271
273
namespace Psr\SimpleCache;
@@ -279,4 +281,4 @@ namespace Psr\SimpleCache;
279
281
interface InvalidArgumentException extends CacheException
280
282
{
281
283
}
282
- ```
284
+ ~~~
You can’t perform that action at this time.
0 commit comments