Completed
Push — develop ( ac4680...bdd608 )
by Hugo
03:08 queued 16s
created
src/Filters/TrashedFilter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function addFilterConstraint(ClassMetadata $targetEntity, $targetTableAlias)
14 14
     {
15
-        if (! $this->isSoftDeletable($targetEntity->rootEntityName)) {
15
+        if (!$this->isSoftDeletable($targetEntity->rootEntityName)) {
16 16
             return '';
17 17
         }
18 18
 
Please login to merge, or discard this patch.
src/Console/GenerateProxiesCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
         $directory = array_get($this->laravel['config'], 'doctrine.proxy.directory');
30 30
 
31
-        if (! $directory) {
31
+        if (!$directory) {
32 32
             $this->error('Proxy directory must be set.');
33 33
             exit;
34 34
         }
Please login to merge, or discard this patch.
src/EventListeners/SoftDeletesListener.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
         $unitOfWork    = $entityManager->getUnitOfWork();
23 23
 
24 24
         foreach ($unitOfWork->getScheduledEntityDeletions() as $entity) {
25
-            if (! $this->isSoftDeletable($entity)) {
25
+            if (!$this->isSoftDeletable($entity)) {
26 26
                 continue;
27 27
             }
28 28
 
Please login to merge, or discard this patch.
src/DoctrineServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
      */
52 52
     protected function registerBindings(Container $container, ConfigRepository $config)
53 53
     {
54
-        $container->singleton('Doctrine\ORM\EntityManager', function () use ($config) {
54
+        $container->singleton('Doctrine\ORM\EntityManager', function() use ($config) {
55 55
             return $this->createEntityManager($config);
56 56
         });
57 57
 
Please login to merge, or discard this patch.
config/doctrine.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
     |
23 23
     */
24 24
 
25
-    'paths'      => [ ],
25
+    'paths'      => [],
26 26
 
27 27
     /*
28 28
     |--------------------------------------------------------------------------
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
     |
34 34
     */
35 35
 
36
-    'types'      => [ ],
36
+    'types'      => [],
37 37
 
38 38
     /*
39 39
     |--------------------------------------------------------------------------
Please login to merge, or discard this patch.