Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Markdown Syntax Highlighting #860

Merged
merged 3 commits into from
Jan 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions accepted/PSR-16-simple-cache.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -249,10 +249,12 @@ interface CacheInterface
*/
public function has($key);
}
```
~~~

### 2.2 CacheException
```
~~~php

<?php
namespace Psr\SimpleCache;

/**
Expand All @@ -261,11 +263,11 @@ namespace Psr\SimpleCache;
interface CacheException
{
}
```
~~~

### 2.3 InvalidArgumentException

```
~~~php
<?php

namespace Psr\SimpleCache;
Expand All @@ -279,4 +281,4 @@ namespace Psr\SimpleCache;
interface InvalidArgumentException extends CacheException
{
}
```
~~~