Passed
Push — master ( 4ffd78...d89730 )
by Afshin
02:19
created
core/Translator/Translator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @var ContainerInterface $setting
17 17
      *
18
-    */
18
+     */
19 19
     public function init()
20 20
     {
21 21
         $setting = $this->settings['translation'];
Please login to merge, or discard this patch.
core/Facades/Auth.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * @param Core\Services\AuthService\AuthService
17 17
      * @return AuthService
18
-    */
18
+     */
19 19
     protected static function getFacadeAccessor()
20 20
     {
21 21
         return 'AuthService';
Please login to merge, or discard this patch.
core/Interfaces/AbstractSession.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 class AbstractSession
13 13
 {
14 14
 
15
-     public function getRecursiveSessionKey($data , $keyArr){
15
+        public function getRecursiveSessionKey($data , $keyArr){
16 16
         $arrayFound  = isset($data[$keyArr[0]]) ? $data[$keyArr[0]] : '';
17 17
         if($arrayFound){
18 18
             unset($keyArr[0]);
Please login to merge, or discard this patch.
core/Handlers/Session/SessionHandler.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -34,12 +34,12 @@
 block discarded – undo
34 34
 
35 35
     public function exists($key,$val)
36 36
     {
37
-       $keySession = $this->get($key);
37
+        $keySession = $this->get($key);
38 38
 
39
-       if($keySession){
40
-          return true;
41
-       }
42
-       return false;
39
+        if($keySession){
40
+            return true;
41
+        }
42
+        return false;
43 43
     }
44 44
 
45 45
 
Please login to merge, or discard this patch.