@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 | |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | $value = parent::__get($key); |
51 | 51 | |
52 | 52 | // Default empty array for these following values |
53 | - if (!$value && in_array($key, ['sections','availableModules','availablePages', 'availableSets'])) { |
|
53 | + if (!$value && in_array($key, ['sections', 'availableModules', 'availablePages', 'availableSets'])) { |
|
54 | 54 | return []; |
55 | 55 | } |
56 | 56 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Thinktomorrow\Chief\Fields\Types; |
4 | 4 | |
5 | 5 | class HtmlField extends Field |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 |
@@ -6,15 +6,15 @@ discard block |
||
6 | 6 | |
7 | 7 | class FieldType |
8 | 8 | { |
9 | - const INPUT = 'input'; // oneliner text (input) |
|
10 | - const TEXT = 'text'; // Plain text (textarea) |
|
11 | - const DATE = 'date'; // Timestamp input |
|
12 | - const HTML = 'html'; // Html text (wysiwyg) |
|
13 | - const SELECT = 'select'; // Select options |
|
14 | - const MEDIA = 'media'; // media file (slim uploader) |
|
15 | - const DOCUMENT = 'document'; // documents |
|
16 | - const RADIO = 'radio'; // media file (slim uploader) |
|
17 | - const PAGEBUILDER = 'pagebuilder'; // the most special field there is... |
|
9 | + const INPUT = 'input'; // oneliner text (input) |
|
10 | + const TEXT = 'text'; // Plain text (textarea) |
|
11 | + const DATE = 'date'; // Timestamp input |
|
12 | + const HTML = 'html'; // Html text (wysiwyg) |
|
13 | + const SELECT = 'select'; // Select options |
|
14 | + const MEDIA = 'media'; // media file (slim uploader) |
|
15 | + const DOCUMENT = 'document'; // documents |
|
16 | + const RADIO = 'radio'; // media file (slim uploader) |
|
17 | + const PAGEBUILDER = 'pagebuilder'; // the most special field there is... |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @var string |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | static::RADIO, |
35 | 35 | static::PAGEBUILDER, |
36 | 36 | ])) { |
37 | - throw new \Exception('Invalid type identifier given [' . $type . '].'); |
|
37 | + throw new \Exception('Invalid type identifier given ['.$type.'].'); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | $this->type = $type; |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | |
43 | 43 | public static function fromString(string $type) |
44 | 44 | { |
45 | - $class = 'Thinktomorrow\Chief\Fields\Types\\' . ucfirst($type . 'Field'); |
|
45 | + $class = 'Thinktomorrow\Chief\Fields\Types\\'.ucfirst($type.'Field'); |
|
46 | 46 | |
47 | 47 | return new $class(new static($type)); |
48 | 48 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 |
@@ -1,5 +1,5 @@ |
||
1 | 1 | <?php |
2 | -declare(strict_types = 1); |
|
2 | +declare(strict_types=1); |
|
3 | 3 | namespace Thinktomorrow\Chief\Fields\Types; |
4 | 4 | |
5 | 5 | class DateField extends Field |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 | |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | */ |
36 | 36 | public function getValidation(array $data = []) |
37 | 37 | { |
38 | - if (! $this->hasValidation()) { |
|
38 | + if (!$this->hasValidation()) { |
|
39 | 39 | return null; |
40 | 40 | } |
41 | 41 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | } |
117 | 117 | |
118 | 118 | if (!in_array($name, ['label', 'key', 'description', 'column', 'name', 'prepend', 'append'])) { |
119 | - throw new \InvalidArgumentException('Cannot set value by ['. $name .'].'); |
|
119 | + throw new \InvalidArgumentException('Cannot set value by ['.$name.'].'); |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | $this->values[$name] = $arguments[0]; |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types = 1); |
|
3 | +declare(strict_types=1); |
|
4 | 4 | |
5 | 5 | namespace Thinktomorrow\Chief\Fields\Types; |
6 | 6 |