@@ -61,13 +61,13 @@ discard block |
||
| 61 | 61 | $format = $request->get('format') ?? 'json'; |
| 62 | 62 | |
| 63 | 63 | //Check if we have one of the supported formats |
| 64 | - if (! in_array($format, ['json', 'csv', 'yaml', 'xml'], true)) { |
|
| 64 | + if (!in_array($format, ['json', 'csv', 'yaml', 'xml'], true)) { |
|
| 65 | 65 | throw new InvalidArgumentException('Given format is not supported!'); |
| 66 | 66 | } |
| 67 | 67 | |
| 68 | 68 | //Check export verbosity level |
| 69 | 69 | $level = $request->get('level') ?? 'extended'; |
| 70 | - if (! in_array($level, ['simple', 'extended', 'full'], true)) { |
|
| 70 | + if (!in_array($level, ['simple', 'extended', 'full'], true)) { |
|
| 71 | 71 | throw new InvalidArgumentException('Given level is not supported!'); |
| 72 | 72 | } |
| 73 | 73 | |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | $response->headers->set('Content-Type', $content_type); |
| 114 | 114 | |
| 115 | 115 | //If view option is not specified, then download the file. |
| 116 | - if (! $request->get('view')) { |
|
| 116 | + if (!$request->get('view')) { |
|
| 117 | 117 | if ($entity instanceof NamedDBElement) { |
| 118 | 118 | $entity_name = $entity->getName(); |
| 119 | 119 | } elseif (is_array($entity)) { |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public function format($value, ?MeasurementUnit $unit = null, array $options = []) |
| 55 | 55 | { |
| 56 | - if (! is_numeric($value)) { |
|
| 56 | + if (!is_numeric($value)) { |
|
| 57 | 57 | throw new InvalidArgumentException('$value must be an numeric value!'); |
| 58 | 58 | } |
| 59 | 59 | $value = (float) $value; |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | //Otherwise just output it |
| 78 | - if (! empty($options['unit'])) { |
|
| 78 | + if (!empty($options['unit'])) { |
|
| 79 | 79 | $format_string = '%.'.$options['decimals'].'f '.$options['unit']; |
| 80 | 80 | } else { //Dont add space after number if no unit was specified |
| 81 | 81 | $format_string = '%.'.$options['decimals'].'f'; |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | protected function configureOptions(OptionsResolver $resolver): void |
| 88 | 88 | { |
| 89 | 89 | $resolver->setDefaults([ |
| 90 | - 'show_prefix' => function (Options $options) { |
|
| 90 | + 'show_prefix' => function(Options $options) { |
|
| 91 | 91 | if (null !== $options['measurement_unit']) { |
| 92 | 92 | /** @var MeasurementUnit $unit */ |
| 93 | 93 | $unit = $options['measurement_unit']; |
@@ -97,7 +97,7 @@ discard block |
||
| 97 | 97 | |
| 98 | 98 | return false; |
| 99 | 99 | }, |
| 100 | - 'is_integer' => function (Options $options) { |
|
| 100 | + 'is_integer' => function(Options $options) { |
|
| 101 | 101 | if (null !== $options['measurement_unit']) { |
| 102 | 102 | /** @var MeasurementUnit $unit */ |
| 103 | 103 | $unit = $options['measurement_unit']; |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | |
| 108 | 108 | return true; |
| 109 | 109 | }, |
| 110 | - 'unit' => function (Options $options) { |
|
| 110 | + 'unit' => function(Options $options) { |
|
| 111 | 111 | if (null !== $options['measurement_unit']) { |
| 112 | 112 | /** @var MeasurementUnit $unit */ |
| 113 | 113 | $unit = $options['measurement_unit']; |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | $resolver->setAllowedTypes('decimals', 'int'); |
| 127 | 127 | |
| 128 | - $resolver->setNormalizer('decimals', function (Options $options, $value) { |
|
| 128 | + $resolver->setNormalizer('decimals', function(Options $options, $value) { |
|
| 129 | 129 | // If the unit is integer based, then dont show any decimals |
| 130 | 130 | if ($options['is_integer']) { |
| 131 | 131 | return 0; |
@@ -296,7 +296,7 @@ |
||
| 296 | 296 | $class = get_class($entity); |
| 297 | 297 | |
| 298 | 298 | //Check if we have an direct mapping for the given class |
| 299 | - if (! array_key_exists($class, $map)) { |
|
| 299 | + if (!array_key_exists($class, $map)) { |
|
| 300 | 300 | //Check if we need to check inheritance by looping through our map |
| 301 | 301 | foreach ($map as $key => $value) { |
| 302 | 302 | if (is_a($entity, $key)) { |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | */ |
| 317 | 317 | public function getBitValue(string $permission_name, int $bit_n): int |
| 318 | 318 | { |
| 319 | - if (! $this->isValidPermissionName($permission_name)) { |
|
| 319 | + if (!$this->isValidPermissionName($permission_name)) { |
|
| 320 | 320 | throw new InvalidArgumentException(sprintf('No permission with the name "%s" is existing!', $permission_name)); |
| 321 | 321 | } |
| 322 | 322 | |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | */ |
| 387 | 387 | public function setBitValue(string $permission_name, int $bit_n, int $new_value): self |
| 388 | 388 | { |
| 389 | - if (! $this->isValidPermissionName($permission_name)) { |
|
| 389 | + if (!$this->isValidPermissionName($permission_name)) { |
|
| 390 | 390 | throw new InvalidArgumentException('No permission with the given name is existing!'); |
| 391 | 391 | } |
| 392 | 392 | |
@@ -405,7 +405,7 @@ discard block |
||
| 405 | 405 | */ |
| 406 | 406 | public function getRawPermissionValue(string $permission_name): int |
| 407 | 407 | { |
| 408 | - if (! $this->isValidPermissionName($permission_name)) { |
|
| 408 | + if (!$this->isValidPermissionName($permission_name)) { |
|
| 409 | 409 | throw new InvalidArgumentException('No permission with the given name is existing!'); |
| 410 | 410 | } |
| 411 | 411 | |
@@ -422,7 +422,7 @@ discard block |
||
| 422 | 422 | */ |
| 423 | 423 | public function setRawPermissionValue(string $permission_name, int $value): self |
| 424 | 424 | { |
| 425 | - if (! $this->isValidPermissionName($permission_name)) { |
|
| 425 | + if (!$this->isValidPermissionName($permission_name)) { |
|
| 426 | 426 | throw new InvalidArgumentException(sprintf('No permission with the given name %s is existing!', $permission_name)); |
| 427 | 427 | } |
| 428 | 428 | |
@@ -442,7 +442,7 @@ discard block |
||
| 442 | 442 | */ |
| 443 | 443 | public function setRawPermissionValues(array $values, ?array $values2 = null): self |
| 444 | 444 | { |
| 445 | - if (! empty($values2)) { |
|
| 445 | + if (!empty($values2)) { |
|
| 446 | 446 | $values = array_combine($values, $values2); |
| 447 | 447 | } |
| 448 | 448 | |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | return true; |
| 176 | 176 | } |
| 177 | 177 | |
| 178 | - return ! in_array($tmp[0], array_merge(static::INTERNAL_PLACEHOLDER, static::BUILTIN_PLACEHOLDER), false); |
|
| 178 | + return !in_array($tmp[0], array_merge(static::INTERNAL_PLACEHOLDER, static::BUILTIN_PLACEHOLDER), false); |
|
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | /** |
@@ -226,7 +226,7 @@ discard block |
||
| 226 | 226 | return null; |
| 227 | 227 | } |
| 228 | 228 | |
| 229 | - if (! empty($this->original_filename)) { |
|
| 229 | + if (!empty($this->original_filename)) { |
|
| 230 | 230 | return strtolower(pathinfo($this->original_filename, PATHINFO_EXTENSION)); |
| 231 | 231 | } |
| 232 | 232 | |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | */ |
| 250 | 250 | public function getURL(): ?string |
| 251 | 251 | { |
| 252 | - if (! $this->isExternal() && ! $this->isBuiltIn()) { |
|
| 252 | + if (!$this->isExternal() && !$this->isBuiltIn()) { |
|
| 253 | 253 | return null; |
| 254 | 254 | } |
| 255 | 255 | |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | */ |
| 263 | 263 | public function getHost(): ?string |
| 264 | 264 | { |
| 265 | - if (! $this->isExternal()) { |
|
| 265 | + if (!$this->isExternal()) { |
|
| 266 | 266 | return null; |
| 267 | 267 | } |
| 268 | 268 | |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | } |
| 293 | 293 | |
| 294 | 294 | //If we have a stored original filename, then use it |
| 295 | - if (! empty($this->original_filename)) { |
|
| 295 | + if (!empty($this->original_filename)) { |
|
| 296 | 296 | return $this->original_filename; |
| 297 | 297 | } |
| 298 | 298 | |
@@ -367,7 +367,7 @@ discard block |
||
| 367 | 367 | */ |
| 368 | 368 | public function setElement(AttachmentContainingDBElement $element): self |
| 369 | 369 | { |
| 370 | - if (! is_a($element, static::ALLOWED_ELEMENT_CLASS)) { |
|
| 370 | + if (!is_a($element, static::ALLOWED_ELEMENT_CLASS)) { |
|
| 371 | 371 | throw new InvalidArgumentException(sprintf('The element associated with a %s must be a %s!', static::class, static::ALLOWED_ELEMENT_CLASS)); |
| 372 | 372 | } |
| 373 | 373 | |
@@ -409,7 +409,7 @@ discard block |
||
| 409 | 409 | public function setURL(?string $url): self |
| 410 | 410 | { |
| 411 | 411 | //Only set if the URL is not empty |
| 412 | - if (! empty($url)) { |
|
| 412 | + if (!empty($url)) { |
|
| 413 | 413 | if (false !== strpos($url, '%BASE%') || false !== strpos($url, '%MEDIA%')) { |
| 414 | 414 | throw new InvalidArgumentException('You can not reference internal files via the url field! But nice try!'); |
| 415 | 415 | } |
@@ -460,7 +460,7 @@ discard block |
||
| 460 | 460 | if ($only_http) { //Check if scheme is HTTPS or HTTP |
| 461 | 461 | $scheme = parse_url($string, PHP_URL_SCHEME); |
| 462 | 462 | if ('http' !== $scheme && 'https' !== $scheme) { |
| 463 | - return false; //All other schemes are not valid. |
|
| 463 | + return false; //All other schemes are not valid. |
|
| 464 | 464 | } |
| 465 | 465 | } |
| 466 | 466 | if ($path_required) { |
@@ -105,7 +105,7 @@ |
||
| 105 | 105 | |
| 106 | 106 | $continue = $io->confirm(sprintf('Found %d abandoned files. Do you want to delete them? This can not be undone!', count($file_list)), false); |
| 107 | 107 | |
| 108 | - if (! $continue) { |
|
| 108 | + if (!$continue) { |
|
| 109 | 109 | //We are finished here, when no files should be deleted |
| 110 | 110 | return; |
| 111 | 111 | } |
@@ -41,7 +41,7 @@ |
||
| 41 | 41 | { |
| 42 | 42 | if (null === $value) { |
| 43 | 43 | return $this->options['nullValue']; |
| 44 | - } elseif (! $value instanceof DateTimeInterface) { |
|
| 44 | + } elseif (!$value instanceof DateTimeInterface) { |
|
| 45 | 45 | $value = new DateTime((string) $value); |
| 46 | 46 | } |
| 47 | 47 | |
@@ -60,11 +60,11 @@ |
||
| 60 | 60 | |
| 61 | 61 | public function render($value, $context) |
| 62 | 62 | { |
| 63 | - if (! $context instanceof Part) { |
|
| 63 | + if (!$context instanceof Part) { |
|
| 64 | 64 | throw new RuntimeException('$context must be a Part object!'); |
| 65 | 65 | } |
| 66 | 66 | $tmp = ''; |
| 67 | - $attachments = $context->getAttachments()->filter(function (Attachment $attachment) { |
|
| 67 | + $attachments = $context->getAttachments()->filter(function(Attachment $attachment) { |
|
| 68 | 68 | return $attachment->getShowInTable() && $this->attachmentManager->isFileExisting($attachment); |
| 69 | 69 | }); |
| 70 | 70 | |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | */ |
| 72 | 72 | public function createNodesForClass(string $class, ObjectManager $manager): void |
| 73 | 73 | { |
| 74 | - if (! new $class() instanceof StructuralDBElement) { |
|
| 74 | + if (!new $class() instanceof StructuralDBElement) { |
|
| 75 | 75 | throw new InvalidArgumentException('$class must be a StructuralDBElement!'); |
| 76 | 76 | } |
| 77 | 77 | |