| @@ -19,7 +19,7 @@ | ||
| 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 | |
| @@ -35,7 +35,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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; | 
| @@ -8,7 +8,7 @@ | ||
| 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 | 
| @@ -3,7 +3,6 @@ | ||
| 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 | |
| @@ -22,12 +22,12 @@ discard block | ||
| 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 | ||
| 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 | |
| @@ -58,7 +58,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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': | 
| @@ -29,7 +29,7 @@ discard block | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | ||
| 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 | /** |