Completed
Push — master ( 43594b...173d09 )
by Gaetano
07:30
created
WrapperBundle/Twig/eZObjectWrapperExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     public function getFunctions()
20 20
     {
21 21
         return array(
22
-            new \Twig_SimpleFunction('render_location', array($this,'renderLocation'), array('is_safe' => array('html'))),
22
+            new \Twig_SimpleFunction('render_location', array($this, 'renderLocation'), array('is_safe' => array('html'))),
23 23
         );
24 24
     }
25 25
 
Please login to merge, or discard this patch.
WrapperBundle/Core/Entity.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      * @param array $settings used to pass to the Entity instance anything that would be done via DIC if it was a service
36 36
      * @throws \InvalidArgumentException
37 37
      */
38
-    public function __construct(eZRepository $repository, Content $content=null, Location $location=null, array $settings = array())
38
+    public function __construct(eZRepository $repository, Content $content = null, Location $location = null, array $settings = array())
39 39
     {
40 40
         if ($content == null && $location == null) {
41 41
             throw new \InvalidArgumentException('Trying to create Entity with no content or location');
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public function content()
71 71
     {
72
-        if($this->content == null){
72
+        if ($this->content == null) {
73 73
             $this->content = $this->repository->getContentService()->loadContent($this->location->contentId);
74 74
         }
75 75
         return $this->content;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
      */
82 82
     public function location()
83 83
     {
84
-        if($this->location == null){
84
+        if ($this->location == null) {
85 85
             $this->location = $this->repository->getLocationService()->loadLocation($this->content->contentInfo->mainLocationId);
86 86
         }
87 87
         return $this->location;
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,9 @@
 block discarded – undo
41 41
             throw new \InvalidArgumentException('Trying to create Entity with no content or location');
42 42
         }
43 43
         if ($content != null && $location != null) {
44
-            if ($location->contentId != $content->id)
45
-                throw new \InvalidArgumentException('Trying to create Entity with mismatching content and location');
44
+            if ($location->contentId != $content->id) {
45
+                            throw new \InvalidArgumentException('Trying to create Entity with mismatching content and location');
46
+            }
46 47
         }
47 48
         $this->content = $content;
48 49
         $this->location = $location;
Please login to merge, or discard this patch.
WrapperBundle/Core/Traits/LoggingEntity.php 1 patch
Braces   +27 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,46 +22,64 @@
 block discarded – undo
22 22
 
23 23
     protected function emergency($message, array $context = array())
24 24
     {
25
-        if ($this->logger) $this->logger->emergency($message, $context);
25
+        if ($this->logger) {
26
+            $this->logger->emergency($message, $context);
27
+        }
26 28
     }
27 29
 
28 30
     protected function alert($message, array $context = array())
29 31
     {
30
-        if ($this->logger) $this->logger->alert($message, $context);
32
+        if ($this->logger) {
33
+            $this->logger->alert($message, $context);
34
+        }
31 35
     }
32 36
 
33 37
     protected function critical($message, array $context = array())
34 38
     {
35
-        if ($this->logger) $this->logger->critical($message, $context);
39
+        if ($this->logger) {
40
+            $this->logger->critical($message, $context);
41
+        }
36 42
     }
37 43
 
38 44
     protected function error($message, array $context = array())
39 45
     {
40
-        if ($this->logger) $this->logger->error($message, $context);
46
+        if ($this->logger) {
47
+            $this->logger->error($message, $context);
48
+        }
41 49
     }
42 50
 
43 51
     protected function warning($message, array $context = array())
44 52
     {
45
-        if ($this->logger) $this->logger->warning($message, $context);
53
+        if ($this->logger) {
54
+            $this->logger->warning($message, $context);
55
+        }
46 56
     }
47 57
 
48 58
     protected function notice($message, array $context = array())
49 59
     {
50
-        if ($this->logger) $this->logger->notice($message, $context);
60
+        if ($this->logger) {
61
+            $this->logger->notice($message, $context);
62
+        }
51 63
     }
52 64
 
53 65
     protected function info($message, array $context = array())
54 66
     {
55
-        if ($this->logger) $this->logger->info($message, $context);
67
+        if ($this->logger) {
68
+            $this->logger->info($message, $context);
69
+        }
56 70
     }
57 71
 
58 72
     protected function debug($message, array $context = array())
59 73
     {
60
-        if ($this->logger) $this->logger->debug($message, $context);
74
+        if ($this->logger) {
75
+            $this->logger->debug($message, $context);
76
+        }
61 77
     }
62 78
 
63 79
     protected function log($level, $message, array $context = array())
64 80
     {
65
-        if ($this->logger) $this->logger->log($level, $message, $context);
81
+        if ($this->logger) {
82
+            $this->logger->log($level, $message, $context);
83
+        }
66 84
     }
67 85
 }
Please login to merge, or discard this patch.
WrapperBundle/Core/EntityInterface.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -11,9 +11,9 @@
 block discarded – undo
11 11
     public function __construct(eZRepository $repository, Content $content=null, Location $location=null);
12 12
 
13 13
     /**
14
-    * Return the content of the current location
15
-    * @return \eZ\Publish\API\Repository\Values\Content\Content
16
-    */
14
+     * Return the content of the current location
15
+     * @return \eZ\Publish\API\Repository\Values\Content\Content
16
+     */
17 17
     public function content();
18 18
 
19 19
     /**
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
 interface EntityInterface
10 10
 {
11
-    public function __construct(eZRepository $repository, Content $content=null, Location $location=null);
11
+    public function __construct(eZRepository $repository, Content $content = null, Location $location = null);
12 12
 
13 13
     /**
14 14
     * Return the content of the current location
Please login to merge, or discard this patch.
WrapperBundle/Core/Repository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
     protected $settings;
59 59
     protected $logger;
60 60
 
61
-    public function __construct(eZRepository $repository, $entityManager, array $settings=array(), $contentTypeIdentifier='')
61
+    public function __construct(eZRepository $repository, $entityManager, array $settings = array(), $contentTypeIdentifier = '')
62 62
     {
63 63
         $this->repository = $repository;
64 64
         $this->entityManager = $entityManager;
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         return $this;
79 79
     }
80 80
 
81
-    public function setLogger(LoggerInterface $logger=null)
81
+    public function setLogger(LoggerInterface $logger = null)
82 82
     {
83 83
         $this->logger = $logger;
84 84
         return $this;
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      */
110 110
     public function __call($method, $args)
111 111
     {
112
-        switch($method) {
112
+        switch ($method) {
113 113
             case 'emergency':
114 114
             case 'alert':
115 115
             case 'critical':
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
     protected function loadEntitiesFromSearchResults(SearchResult $searchResult)
245 245
     {
246 246
         $entities = array();
247
-        foreach($searchResult->searchHits as $searchHit) {
247
+        foreach ($searchResult->searchHits as $searchHit) {
248 248
             // let's hope that in the future eZPublish does not add new types of results to SearchResult... :-P
249 249
             if ($searchHit->valueObject instanceof \eZ\Publish\API\Repository\Values\Content\Location) {
250 250
                 $entities[] = $this->loadEntityFromLocation($searchHit->valueObject);
Please login to merge, or discard this patch.
WrapperBundle/Core/EntityManager.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param array $classMap array of classes exposing a RepositoryInterface
30 30
      * @param RepositoryManagerInterface[] $serviceMap array of services exposing a RepositoryInterface
31 31
      */
32
-    public function __construct(eZRepository $repository, array $classMap=array(), array $serviceMap=array())
32
+    public function __construct(eZRepository $repository, array $classMap = array(), array $serviceMap = array())
33 33
     {
34 34
         $this->repository = $repository;
35 35
         foreach ($classMap as $contentTypeIdentifier => $className) {
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
      */
142 142
     public function load($content)
143 143
     {
144
-        switch(true)
144
+        switch (true)
145 145
         {
146 146
             case $content instanceof ContentInfo:
147 147
                 return $this
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
                     ->getRepositoryByContentTypeId($content->contentInfo->contentTypeId)
157 157
                     ->loadEntityFromLocation($content);
158 158
         }
159
-        throw new \UnexpectedValueException("Can not load an Entity for php object of class " . get_class($content));
159
+        throw new \UnexpectedValueException("Can not load an Entity for php object of class ".get_class($content));
160 160
     }
161 161
 
162 162
     /**
@@ -168,22 +168,22 @@  discard block
 block discarded – undo
168 168
      */
169 169
     public function loadMany($contents)
170 170
     {
171
-        switch(true)
171
+        switch (true)
172 172
         {
173 173
             case $contents instanceof SearchResult:
174 174
                 $entities = array();
175
-                foreach($contents->searchHits as $searchHit) {
175
+                foreach ($contents->searchHits as $searchHit) {
176 176
                     $entities[] = $this->load($searchHit->valueObject);
177 177
                 }
178 178
                 return $entities;
179 179
             case is_array($contents):
180 180
                 $entities = array();
181
-                foreach($contents as $key => $value) {
181
+                foreach ($contents as $key => $value) {
182 182
                     $entities[$key] = $this->load($value);
183 183
                 }
184 184
                 return $entities;
185 185
         }
186
-        throw new \UnexpectedValueException("Can not load an Entities for php object of class " . get_class($contents));
186
+        throw new \UnexpectedValueException("Can not load an Entities for php object of class ".get_class($contents));
187 187
     }
188 188
 
189 189
     /**
Please login to merge, or discard this patch.
WrapperBundle/Core/Traits/RelationTraversingEntity.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 namespace Kaliop\eZObjectWrapperBundle\Core\Traits;
4 4
 
5 5
 use Kaliop\eZObjectWrapperBundle\Core\EntityInterface;
6
-
7 6
 use eZ\Publish\Core\FieldType\RelationList;
8 7
 use eZ\Publish\Core\FieldType\Relation;
9 8
 
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -22,12 +22,12 @@  discard block
 block discarded – undo
22 22
         $relatedEntities = array();
23 23
 
24 24
         $fieldValue = $this->content()->getFieldValue($fieldName);
25
-        if (! $fieldValue instanceof RelationList\Value) {
25
+        if (!$fieldValue instanceof RelationList\Value) {
26 26
             throw new \RuntimeException("Field '$fieldName' is not of type RelationList");
27 27
         }
28 28
 
29 29
         $relatedContentItems = array();
30
-        foreach($fieldValue->destinationContentIds as $contentId) {
30
+        foreach ($fieldValue->destinationContentIds as $contentId) {
31 31
             // Just in case the object has been pu tin the trash or hidden and they have not updated the related fields to remove from view.
32 32
             try {
33 33
                 $relatedContentItems[] = $this->getContentService()->loadContent($contentId);
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
     protected function getRelation($fieldName)
50 50
     {
51 51
         $fieldValue = $this->content()->getFieldValue($fieldName);
52
-        if (! $fieldValue instanceof Relation\Value) {
52
+        if (!$fieldValue instanceof Relation\Value) {
53 53
             throw new \RuntimeException("Field '$fieldName' is not of type Relation");
54 54
         }
55 55
 
Please login to merge, or discard this patch.