@@ -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 | /** |