Completed
Push — extensions-support ( 1dda5d...e16b25 )
by Guido
03:56 queued 49s
created
src/Extensions/Gedmo/Loggable.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -37,20 +37,20 @@
 block discarded – undo
37 37
      */
38 38
     public static function enable()
39 39
     {
40
-        Entity::macro('loggable', function (Entity $builder, $logEntry = null) {
40
+        Entity::macro('loggable', function(Entity $builder, $logEntry = null) {
41 41
             $loggable = new static($builder->getClassMetadata(), $logEntry);
42 42
             $loggable->build();
43 43
         });
44 44
 
45
-        Field::macro('versioned', function (Field $builder) {
45
+        Field::macro('versioned', function(Field $builder) {
46 46
             return new Versioned($builder->getClassMetadata(), $builder->getName());
47 47
         });
48 48
 
49
-        ManyToOne::macro('versioned', function (ManyToOne $builder) {
49
+        ManyToOne::macro('versioned', function(ManyToOne $builder) {
50 50
             return new Versioned($builder->getClassMetadata(), $builder->getRelation());
51 51
         });
52 52
 
53
-        OneToOne::macro('versioned', function (OneToOne $builder) {
53
+        OneToOne::macro('versioned', function(OneToOne $builder) {
54 54
             return new Versioned($builder->getClassMetadata(), $builder->getRelation());
55 55
         });
56 56
     }
Please login to merge, or discard this patch.