Completed
Push — master ( 032ac1...a7b618 )
by Gaetano
06:20
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 1 patch
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.
WrapperBundle/Core/EntityInterface.php 1 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   +3 added lines, -3 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':
Please login to merge, or discard this patch.
WrapperBundle/Core/EntityManager.php 1 patch
Spacing   +5 added lines, -5 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,7 +168,7 @@  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();
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
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 1 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->getRepository()->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.