Completed
Push — master ( 2c4b7d...ab83b5 )
by Oliver
03:42
created
src/BoxedCode/Eloquent/Meta/Metable.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      */
106 106
     public static function observeSaveAndCascade()
107 107
     {
108
-        $onSave = function ($model) {
108
+        $onSave = function($model) {
109 109
 
110 110
             /*
111 111
              * Remove any keys not present in the collection
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     public static function observeDeleteAndCascade()
145 145
     {
146
-        $onDelete = function ($model) {
146
+        $onDelete = function($model) {
147 147
             foreach ($model->meta as $meta) {
148 148
                 $meta->delete();
149 149
             }
Please login to merge, or discard this patch.
src/BoxedCode/Eloquent/Meta/MetaServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
      */
48 48
     public function registerTypeRegistry()
49 49
     {
50
-        $this->app->singleton(TypeRegistry::class, function () {
50
+        $this->app->singleton(TypeRegistry::class, function() {
51 51
             $registry = new TypeRegistry;
52 52
 
53 53
             $this->registerDefaultTypes($registry);
Please login to merge, or discard this patch.
src/BoxedCode/Eloquent/Meta/Types/Registry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 
41 41
     protected function registerClass($class, $instance)
42 42
     {
43
-        if (! isset($this->registered[$class])) {
43
+        if (!isset($this->registered[$class])) {
44 44
             $this->registered[$class] = $instance;
45 45
 
46 46
             return true;
Please login to merge, or discard this patch.