Completed
Pull Request — master (#82)
by
unknown
07:46
created
src/PhraseanetSDK/Entity/BasketElement.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
      */
99 99
     public function isValidationItem(): bool
100 100
     {
101
-        return (bool)$this->source->validation_item;
101
+        return (bool) $this->source->validation_item;
102 102
     }
103 103
 
104 104
     /**
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
      */
120 120
     public function getValidationChoices()
121 121
     {
122
-        if (! isset($this->source->validation_choices)) {
122
+        if (!isset($this->source->validation_choices)) {
123 123
             $this->validationChoices = new ArrayCollection();
124 124
         }
125 125
 
Please login to merge, or discard this patch.
src/PhraseanetSDK/Entity/Basket.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
      */
184 184
     public function getValidationUsers(): ?ArrayCollection
185 185
     {
186
-        if (! $this->isValidationBasket()) {
186
+        if (!$this->isValidationBasket()) {
187 187
             return null;
188 188
         }
189 189
 
Please login to merge, or discard this patch.
src/PhraseanetSDK/Entity/Record.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function getId(): string
113 113
     {
114
-        return $this->getDataboxId() . '_' . $this->getRecordId();
114
+        return $this->getDataboxId().'_'.$this->getRecordId();
115 115
     }
116 116
 
117 117
     /**
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function getThumbnail(): ?Subdef
226 226
     {
227
-        if (! isset($this->source->thumbnail)) {
227
+        if (!isset($this->source->thumbnail)) {
228 228
             return null;
229 229
         }
230 230
 
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
      */
259 259
     public function getTechnicalInformation()
260 260
     {
261
-        if (! isset($this->source->technical_informations)) {
261
+        if (!isset($this->source->technical_informations)) {
262 262
             $this->technicalInformation = new ArrayCollection();
263 263
         }
264 264
 
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
      */
275 275
     public function getSubdefs()
276 276
     {
277
-        if (! isset($this->source->subdefs)) {
277
+        if (!isset($this->source->subdefs)) {
278 278
             $this->subdefs = new ArrayCollection();
279 279
         }
280 280
 
@@ -286,7 +286,7 @@  discard block
 block discarded – undo
286 286
      */
287 287
     public function getStatus()
288 288
     {
289
-        if (! isset($this->source->status)) {
289
+        if (!isset($this->source->status)) {
290 290
             $this->status = new ArrayCollection();
291 291
         }
292 292
 
@@ -298,7 +298,7 @@  discard block
 block discarded – undo
298 298
      */
299 299
     public function getCaption()
300 300
     {
301
-        if (! isset($this->source->caption)) {
301
+        if (!isset($this->source->caption)) {
302 302
             $this->caption = new ArrayCollection();
303 303
         }
304 304
 
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
      */
311 311
     public function getMetadata()
312 312
     {
313
-        if (! isset($this->source->metadata)) {
313
+        if (!isset($this->source->metadata)) {
314 314
             $this->metadata = new ArrayCollection();
315 315
         }
316 316
 
Please login to merge, or discard this patch.
src/PhraseanetSDK/Entity/Story.php 1 patch
Spacing   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function getThumbnail(): ?Subdef
155 155
     {
156
-        if (! isset($this->source->thumbnail)) {
156
+        if (!isset($this->source->thumbnail)) {
157 157
             return null;
158 158
         }
159 159
 
@@ -208,8 +208,7 @@  discard block
 block discarded – undo
208 208
     public function getRecordCount(): int
209 209
     {
210 210
         return $this->recordCount !== null ?
211
-            $this->recordCount :
212
-            $this->recordCount =
211
+            $this->recordCount : $this->recordCount =
213 212
                 (isset($this->source->record_count) ? $this->source->record_count : count($this->getRecords()));
214 213
     }
215 214
 
@@ -218,7 +217,7 @@  discard block
 block discarded – undo
218 217
      */
219 218
     public function getRecords()
220 219
     {
221
-        if (! isset($this->source->records)) {
220
+        if (!isset($this->source->records)) {
222 221
             $this->records = new ArrayCollection();
223 222
         }
224 223
 
@@ -232,7 +231,7 @@  discard block
 block discarded – undo
232 231
      */
233 232
     public function getMetadata()
234 233
     {
235
-        if (! isset($this->source->metadata)) {
234
+        if (!isset($this->source->metadata)) {
236 235
             $this->metadata = new ArrayCollection();
237 236
         }
238 237
 
@@ -249,7 +248,7 @@  discard block
 block discarded – undo
249 248
      */
250 249
     public function getStatus()
251 250
     {
252
-        if (! isset($this->status)) {
251
+        if (!isset($this->status)) {
253 252
             /** @var RecordStatusRepository $repo */
254 253
             $repo = $this->entityManager->getRepository('recordStatus');
255 254
             $this->status = $repo->findByRecord(
@@ -269,11 +268,11 @@  discard block
 block discarded – undo
269 268
      */
270 269
     public function getCaption()
271 270
     {
272
-        if (! isset($this->caption) && isset($this->source->caption)) {
271
+        if (!isset($this->caption) && isset($this->source->caption)) {
273 272
             $this->caption = RecordCaption::fromList((array) $this->source->caption);
274 273
         }
275 274
 
276
-        if (! isset($this->caption)) {
275
+        if (!isset($this->caption)) {
277 276
             /** @var CaptionRepository $repo */
278 277
             $repo = $this->entityManager->getRepository('caption');
279 278
             $this->caption = $repo->findByRecord(
Please login to merge, or discard this patch.