Completed
Push — master ( 9e7f38...550c81 )
by Vagner Luz do
13s
created
src/TinkerShell.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
      */
66 66
     public function getShell()
67 67
     {
68
-        if (! $this->shell) {
68
+        if (!$this->shell) {
69 69
             $config = new Configuration();
70 70
 
71 71
             $config->getPresenter()->addCasters(
Please login to merge, or discard this patch.
src/TinkerCaster.php 1 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.
bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/vendor/autoload.php';
3
+require_once __DIR__.'/vendor/autoload.php';
4 4
 
5 5
 $path = __DIR__.'/fixture';
6 6
 
Please login to merge, or discard this patch.