diff options
author | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-08-20 07:53:55 +0200 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2015-08-20 07:53:55 +0200 |
commit | 8ce32af61229eec8f4cc34b207273d47f60adc48 (patch) | |
tree | 4d878e6d4eb5c1baab95cd02e3eb95ee4182a399 /src/Wallabag/CoreBundle/Service | |
parent | 34437f408c5b7b590aded6795d7ce01bfbfc7711 (diff) | |
download | wallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.tar.gz wallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.tar.zst wallabag-8ce32af61229eec8f4cc34b207273d47f60adc48.zip |
CS
We shouldn't forget to run `php-cs-fixer` time to time
Diffstat (limited to 'src/Wallabag/CoreBundle/Service')
-rw-r--r-- | src/Wallabag/CoreBundle/Service/Extractor.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Wallabag/CoreBundle/Service/Extractor.php b/src/Wallabag/CoreBundle/Service/Extractor.php index 961ac20a..4c067d3a 100644 --- a/src/Wallabag/CoreBundle/Service/Extractor.php +++ b/src/Wallabag/CoreBundle/Service/Extractor.php | |||
@@ -33,8 +33,8 @@ final class Extractor | |||
33 | $REAL = array(); | 33 | $REAL = array(); |
34 | foreach ($GLOBALS as $key => $value) { | 34 | foreach ($GLOBALS as $key => $value) { |
35 | if ($key != 'GLOBALS' && $key != '_SESSION' && $key != 'HTTP_SESSION_VARS') { | 35 | if ($key != 'GLOBALS' && $key != '_SESSION' && $key != 'HTTP_SESSION_VARS') { |
36 | $GLOBALS[$key] = array(); | 36 | $GLOBALS[$key] = array(); |
37 | $REAL[$key] = $value; | 37 | $REAL[$key] = $value; |
38 | } | 38 | } |
39 | } | 39 | } |
40 | // Saving and clearing session | 40 | // Saving and clearing session |