Completed
Pull Request — master (#102)
by Kristof
04:29
created
src/EventXmlString.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Created by PhpStorm.
4
- * User: nicolas
5
- * Date: 09/10/15
6
- * Time: 13:39
7
- */
3
+     * Created by PhpStorm.
4
+     * User: nicolas
5
+     * Date: 09/10/15
6
+     * Time: 13:39
7
+     */
8 8
 
9 9
 namespace CultuurNet\UDB3;
10 10
 
Please login to merge, or discard this patch.
src/Label.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,8 +33,8 @@
 block discarded – undo
33 33
     public function equals(Label $label)
34 34
     {
35 35
         return strcmp(
36
-            mb_strtolower((string) $this, 'UTF-8'),
37
-            mb_strtolower((string) $label, 'UTF-8')
36
+            mb_strtolower((string)$this, 'UTF-8'),
37
+            mb_strtolower((string)$label, 'UTF-8')
38 38
         ) == 0;
39 39
     }
40 40
 }
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- */
3
+     * @file
4
+     */
5 5
 
6 6
 namespace CultuurNet\UDB3\Variations;
7 7
 
Please login to merge, or discard this patch.
src/Location.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -92,14 +92,14 @@
 block discarded – undo
92 92
     public function serialize()
93 93
     {
94 94
         return [
95
-          'cdbid' => $this->cdbid,
96
-          'name' => $this->name,
97
-          'address' => [
95
+            'cdbid' => $this->cdbid,
96
+            'name' => $this->name,
97
+            'address' => [
98 98
             'addressCountry' => $this->country,
99 99
             'addressLocality' => $this->locality,
100 100
             'postalCode' => $this->postalcode,
101 101
             'streetAddress' => $this->street,
102
-          ]
102
+            ]
103 103
         ];
104 104
     }
105 105
 
Please login to merge, or discard this patch.
src/Organizer/Events/OrganizerCreated.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,11 +88,11 @@
 block discarded – undo
88 88
         }
89 89
 
90 90
         return parent::serialize() + array(
91
-          'title' => (string) $this->getTitle(),
92
-          'addresses' => $addresses,
93
-          'phones' => $this->getPhones(),
94
-          'emails' => $this->getEmails(),
95
-          'urls' => $this->getUrls(),
91
+            'title' => (string) $this->getTitle(),
92
+            'addresses' => $addresses,
93
+            'phones' => $this->getPhones(),
94
+            'emails' => $this->getEmails(),
95
+            'urls' => $this->getUrls(),
96 96
         );
97 97
     }
98 98
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
         }
89 89
 
90 90
         return parent::serialize() + array(
91
-          'title' => (string) $this->getTitle(),
91
+          'title' => (string)$this->getTitle(),
92 92
           'addresses' => $addresses,
93 93
           'phones' => $this->getPhones(),
94 94
           'emails' => $this->getEmails(),
Please login to merge, or discard this patch.
src/Organizer/Events/OrganizerEvent.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     public function serialize()
34 34
     {
35 35
         return array(
36
-          'organizer_id' => $this->organizerId,
36
+            'organizer_id' => $this->organizerId,
37 37
         );
38 38
     }
39 39
 
Please login to merge, or discard this patch.
src/OrganizerUpdatedTrait.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
     public function serialize()
34 34
     {
35 35
         return parent::serialize() + array(
36
-          'organizerId' => $this->organizerId,
36
+            'organizerId' => $this->organizerId,
37 37
         );
38 38
     }
39 39
 }
Please login to merge, or discard this patch.
src/Place/Events/PlaceCreated.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
             $theme = $this->getTheme()->serialize();
114 114
         }
115 115
         return parent::serialize() + array(
116
-            'title' => (string) $this->getTitle(),
116
+            'title' => (string)$this->getTitle(),
117 117
             'event_type' => $this->getEventType()->serialize(),
118 118
             'theme' => $theme,
119 119
             'address' => $this->getAddress()->serialize(),
Please login to merge, or discard this patch.
src/Place/PlaceEvent.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Contains CultuurNet\UDB3\Place\PlaceEvent.
5
- */
3
+     * @file
4
+     * Contains CultuurNet\UDB3\Place\PlaceEvent.
5
+     */
6 6
 
7 7
 namespace CultuurNet\UDB3\Place;
8 8
 
Please login to merge, or discard this patch.
src/Place/ReadModel/Relations/Doctrine/DBALRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- */
3
+     * @file
4
+     */
5 5
 
6 6
 namespace CultuurNet\UDB3\Place\ReadModel\Relations\Doctrine;
7 7
 
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
     public function removeRelations($eventId)
73 73
     {
74
-      // @todo implement this for non-drupal.
74
+        // @todo implement this for non-drupal.
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.