@@ -228,7 +228,6 @@ |
||
| 228 | 228 | * |
| 229 | 229 | * @param array $keys |
| 230 | 230 | * An array of keys that should be removed from the pool. |
| 231 | - |
|
| 232 | 231 | * @throws InvalidArgumentException |
| 233 | 232 | * If any of the keys in $keys are not a legal value a \Psr\Cache\InvalidArgumentException |
| 234 | 233 | * MUST be thrown. |
@@ -228,7 +228,6 @@ |
||
| 228 | 228 | * |
| 229 | 229 | * @param array $keys |
| 230 | 230 | * An array of keys that should be removed from the pool. |
| 231 | - |
|
| 232 | 231 | * @throws InvalidArgumentException |
| 233 | 232 | * If any of the keys in $keys are not a legal value a \Psr\Cache\InvalidArgumentException |
| 234 | 233 | * MUST be thrown. |
@@ -1,16 +1,16 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * An example of a project-specific implementation. |
|
| 4 | - * |
|
| 5 | - * After registering this autoload function with SPL, the following line |
|
| 6 | - * would cause the function to attempt to load the \Foo\Bar\Baz\Qux class |
|
| 7 | - * from /path/to/project/src/Baz/Qux.php: |
|
| 8 | - * |
|
| 9 | - * new \Foo\Bar\Baz\Qux; |
|
| 10 | - * |
|
| 11 | - * @param string $class The fully-qualified class name. |
|
| 12 | - * @return void |
|
| 13 | - */ |
|
| 3 | + * An example of a project-specific implementation. |
|
| 4 | + * |
|
| 5 | + * After registering this autoload function with SPL, the following line |
|
| 6 | + * would cause the function to attempt to load the \Foo\Bar\Baz\Qux class |
|
| 7 | + * from /path/to/project/src/Baz/Qux.php: |
|
| 8 | + * |
|
| 9 | + * new \Foo\Bar\Baz\Qux; |
|
| 10 | + * |
|
| 11 | + * @param string $class The fully-qualified class name. |
|
| 12 | + * @return void |
|
| 13 | + */ |
|
| 14 | 14 | spl_autoload_register( |
| 15 | 15 | function ($class) { |
| 16 | 16 | // project-specific namespace prefix |