Completed
Push — master ( 61c49f...32fcdc )
by Vagner Luz do
09:05
created
src/TinkerCaster.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -45,13 +45,13 @@
 block discarded – undo
45 45
         $results = [];
46 46
         foreach (self::$appProperties as $property) {
47 47
             try {
48
-				if (method_exists($app, $property)) {
49
-					$val = $app->$property();
48
+                if (method_exists($app, $property)) {
49
+                    $val = $app->$property();
50 50
 					
51
-					if (! is_null($val)) {
52
-						$results[Caster::PREFIX_VIRTUAL.$property] = $val;
53
-					}
54
-				}
51
+                    if (! is_null($val)) {
52
+                        $results[Caster::PREFIX_VIRTUAL.$property] = $val;
53
+                    }
54
+                }
55 55
             } catch (Exception $e) {
56 56
                 //
57 57
             }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 				if (method_exists($app, $property)) {
49 49
 					$val = $app->$property();
50 50
 					
51
-					if (! is_null($val)) {
51
+					if (!is_null($val)) {
52 52
 						$results[Caster::PREFIX_VIRTUAL.$property] = $val;
53 53
 					}
54 54
 				}
Please login to merge, or discard this patch.