@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | return self::pdo()->getAttribute(PDO::ATTR_DRIVER_NAME); |
141 | 141 | } |
142 | 142 | |
143 | - public static function exec(string $sql): int|false |
|
143 | + public static function exec(string $sql): int | false |
|
144 | 144 | { |
145 | 145 | return self::pdo()->exec($sql); |
146 | 146 | } |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | } |
206 | 206 | } |
207 | 207 | |
208 | - public static function binaryColumn(string $column, string|null $alias = null): Expression |
|
208 | + public static function binaryColumn(string $column, string | null $alias = null): Expression |
|
209 | 209 | { |
210 | 210 | if (self::driverName() === self::MYSQL) { |
211 | 211 | $sql = 'CAST(' . $column . ' AS binary)'; |
@@ -35,9 +35,9 @@ discard block |
||
35 | 35 | private readonly bool $unsigned = false, |
36 | 36 | private readonly bool $fixed = false, |
37 | 37 | private readonly bool $nullable = false, |
38 | - private readonly float|int|string|null $default = null, |
|
38 | + private readonly float | int | string | null $default = null, |
|
39 | 39 | private readonly bool $autoincrement = false, |
40 | - private readonly string|null $collation = null, |
|
40 | + private readonly string | null $collation = null, |
|
41 | 41 | ) { |
42 | 42 | parent::__construct( |
43 | 43 | name: $name, |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | ); |
74 | 74 | } |
75 | 75 | |
76 | - public function default(float|int|string $default): self |
|
76 | + public function default(float | int | string $default): self |
|
77 | 77 | { |
78 | 78 | return new self( |
79 | 79 | name: $this->name, |
@@ -29,7 +29,7 @@ |
||
29 | 29 | /** |
30 | 30 | * @param array<int,string> $columns |
31 | 31 | */ |
32 | - public function __construct(private readonly array $columns, string|null $name = null) |
|
32 | + public function __construct(private readonly array $columns, string | null $name = null) |
|
33 | 33 | { |
34 | 34 | parent::__construct(name: $name, columns: $this->columns); |
35 | 35 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | /** |
33 | 33 | * @param array<int,string> $columns |
34 | 34 | */ |
35 | - public function __construct(private readonly array $columns, string|null $name = null) |
|
35 | + public function __construct(private readonly array $columns, string | null $name = null) |
|
36 | 36 | { |
37 | 37 | parent::__construct(name: $name, columns: $this->columns, isUnique: true); |
38 | 38 | } |
@@ -240,7 +240,7 @@ |
||
240 | 240 | /** |
241 | 241 | * Run the application. |
242 | 242 | */ |
243 | - public function run(string $php_sapi): int|ResponseInterface |
|
243 | + public function run(string $php_sapi): int | ResponseInterface |
|
244 | 244 | { |
245 | 245 | if ($php_sapi === 'cli') { |
246 | 246 | return $this->bootstrap()->cliRequest(); |
@@ -72,11 +72,11 @@ |
||
72 | 72 | $user->realName(), |
73 | 73 | $user->email(), |
74 | 74 | Auth::isAdmin(user: $user) ? 'Yes' : 'No', |
75 | - $user->getPreference(setting_name: UserInterface::PREF_IS_ACCOUNT_APPROVED) ? 'Yes' : 'No', |
|
76 | - $user->getPreference(setting_name: UserInterface::PREF_IS_EMAIL_VERIFIED) ? 'Yes' : 'No', |
|
77 | - $user->getPreference(setting_name: UserInterface::PREF_LANGUAGE), |
|
78 | - $user->getPreference(setting_name: UserInterface::PREF_TIME_ZONE), |
|
79 | - $user->getPreference(setting_name: UserInterface::PREF_CONTACT_METHOD), |
|
75 | + $user->getPreference(setting_name : UserInterface::PREF_IS_ACCOUNT_APPROVED) ? 'Yes' : 'No', |
|
76 | + $user->getPreference(setting_name : UserInterface::PREF_IS_EMAIL_VERIFIED) ? 'Yes' : 'No', |
|
77 | + $user->getPreference(setting_name : UserInterface::PREF_LANGUAGE), |
|
78 | + $user->getPreference(setting_name : UserInterface::PREF_TIME_ZONE), |
|
79 | + $user->getPreference(setting_name : UserInterface::PREF_CONTACT_METHOD), |
|
80 | 80 | $registered, |
81 | 81 | $last_login, |
82 | 82 | ]); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | $mime_type = Mime::DEFAULT_TYPE; |
89 | 89 | } |
90 | 90 | |
91 | - $filename = $download ? addcslashes(string: basename(path: $path), characters: '"') : ''; |
|
91 | + $filename = $download ? addcslashes(string : basename(path : $path), characters : '"') : ''; |
|
92 | 92 | |
93 | 93 | return $this->imageResponse(data: $filesystem->read(location: $path), mime_type: $mime_type, filename: $filename); |
94 | 94 | } catch (UnableToReadFile | FilesystemException $ex) { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | $image = $this->imageManager()->read(input: $filesystem->readStream($path)); |
148 | 148 | $watermark = $this->createWatermark(width: $image->width(), height: $image->height(), media_file: $media_file); |
149 | 149 | $image = $this->addWatermark(image: $image, watermark: $watermark); |
150 | - $filename = $download ? basename(path: $path) : ''; |
|
150 | + $filename = $download ? basename(path : $path) : ''; |
|
151 | 151 | $quality = $this->extractImageQuality(image: $image, default: static::GD_DEFAULT_IMAGE_QUALITY); |
152 | 152 | $data = $image->encodeByMediaType(type: $mime_type, quality: $quality)->toString(); |
153 | 153 |
@@ -45,13 +45,13 @@ discard block |
||
45 | 45 | /** @var array<int,ForeignKey> */ |
46 | 46 | private array $foreign_keys; |
47 | 47 | |
48 | - public function __construct(private readonly string $name, Column|Index|UniqueIndex|ForeignKey|PrimaryKey ...$components) |
|
48 | + public function __construct(private readonly string $name, Column | Index | UniqueIndex | ForeignKey | PrimaryKey ...$components) |
|
49 | 49 | { |
50 | - $column_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof Column; |
|
51 | - $foreign_key_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof ForeignKey; |
|
52 | - $index_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof Index; |
|
53 | - $primary_key_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof PrimaryKey; |
|
54 | - $unique_index_filter = static fn (Column|Index|UniqueIndex|ForeignKey|PrimaryKey $component): bool => $component instanceof UniqueIndex; |
|
50 | + $column_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof Column; |
|
51 | + $foreign_key_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof ForeignKey; |
|
52 | + $index_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof Index; |
|
53 | + $primary_key_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof PrimaryKey; |
|
54 | + $unique_index_filter = static fn (Column | Index | UniqueIndex | ForeignKey | PrimaryKey $component): bool => $component instanceof UniqueIndex; |
|
55 | 55 | |
56 | 56 | $this->columns = array_values(array: array_filter(array: $components, callback: $column_filter)); |
57 | 57 | $this->foreign_keys = array_values(array: array_filter(array: $components, callback: $foreign_key_filter)); |
@@ -73,21 +73,21 @@ discard block |
||
73 | 73 | ); |
74 | 74 | } |
75 | 75 | |
76 | - private function namedIndex(Index &$index, int|string $n): void |
|
76 | + private function namedIndex(Index & $index, int | string $n): void |
|
77 | 77 | { |
78 | 78 | $n = 1 + (int) $n; |
79 | 79 | $name = DB::prefix($this->name . '_ix' . $n); |
80 | 80 | $index = $index->name($name); |
81 | 81 | } |
82 | 82 | |
83 | - private function namedUniqueIndex(UniqueIndex &$unique_index, int|string $n): void |
|
83 | + private function namedUniqueIndex(UniqueIndex & $unique_index, int | string $n): void |
|
84 | 84 | { |
85 | 85 | $n = 1 + (int) $n; |
86 | 86 | $name = DB::prefix($this->name . '_ux' . $n); |
87 | 87 | $unique_index = $unique_index->name($name); |
88 | 88 | } |
89 | 89 | |
90 | - private function namedForeignKey(ForeignKey &$foreign_key, int|string $n): void |
|
90 | + private function namedForeignKey(ForeignKey & $foreign_key, int | string $n): void |
|
91 | 91 | { |
92 | 92 | $n = 1 + (int) $n; |
93 | 93 | $name = DB::prefix($this->name . '_fk' . $n); |
@@ -3,19 +3,19 @@ |
||
3 | 3 | declare(strict_types=1); |
4 | 4 | |
5 | 5 | return array ( |
6 | - '%H:%i:%s' => '%g:%i:%s %a', |
|
7 | - '%j %F %Y' => '%F %j, %Y', |
|
8 | - 'Asunción, Paraguay' => 'Asuncion, Paraguay', |
|
9 | - 'Bogotá, Colombia' => 'Bogota, Colombia', |
|
10 | - 'Ciudad Juárez, Mexico' => 'Ciudad Juarez, Mexico', |
|
11 | - 'Colonia Juárez, Mexico' => 'Colonia Juarez, Mexico', |
|
12 | - 'Curaçao' => 'Curacao', |
|
13 | - 'Córdoba, Argentina' => 'Cordoba, Argentina', |
|
14 | - 'Côte d’Ivoire' => 'Cote d’Ivoire', |
|
15 | - 'Réunion' => 'Reunion', |
|
16 | - 'Saint Barthélemy' => 'Saint Barthelemy', |
|
17 | - 'San José, Costa Rica' => 'San Jose, Costa Rica', |
|
18 | - 'São Paulo, Brazil' => 'Sao Paulo, Brazil', |
|
19 | - 'Tuxtla Gutiérrez, Mexico' => 'Tuxtla Gutierrez, Mexico', |
|
20 | - 'Åland Islands' => 'Aland Islands', |
|
6 | + '%H:%i:%s' => '%g:%i:%s %a', |
|
7 | + '%j %F %Y' => '%F %j, %Y', |
|
8 | + 'Asunción, Paraguay' => 'Asuncion, Paraguay', |
|
9 | + 'Bogotá, Colombia' => 'Bogota, Colombia', |
|
10 | + 'Ciudad Juárez, Mexico' => 'Ciudad Juarez, Mexico', |
|
11 | + 'Colonia Juárez, Mexico' => 'Colonia Juarez, Mexico', |
|
12 | + 'Curaçao' => 'Curacao', |
|
13 | + 'Córdoba, Argentina' => 'Cordoba, Argentina', |
|
14 | + 'Côte d’Ivoire' => 'Cote d’Ivoire', |
|
15 | + 'Réunion' => 'Reunion', |
|
16 | + 'Saint Barthélemy' => 'Saint Barthelemy', |
|
17 | + 'San José, Costa Rica' => 'San Jose, Costa Rica', |
|
18 | + 'São Paulo, Brazil' => 'Sao Paulo, Brazil', |
|
19 | + 'Tuxtla Gutiérrez, Mexico' => 'Tuxtla Gutierrez, Mexico', |
|
20 | + 'Åland Islands' => 'Aland Islands', |
|
21 | 21 | ); |
@@ -2,7 +2,7 @@ |
||
2 | 2 | |
3 | 3 | declare(strict_types=1); |
4 | 4 | |
5 | -return array ( |
|
5 | +return array( |
|
6 | 6 | '%H:%i:%s' => '%g:%i:%s %a', |
7 | 7 | '%j %F %Y' => '%F %j, %Y', |
8 | 8 | 'Asunción, Paraguay' => 'Asuncion, Paraguay', |