Completed
Push — master ( fb3e81...9a96e3 )
by Oskar
04:01
created
src/Cache/CCachePool.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,6 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
src/Cache/CacheItemPoolInterface.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,6 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
autoloader.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
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
Please login to merge, or discard this patch.