Skip to content

Commit bb98373

Browse files
authored
v4.6.0-RC3 (#1486)
* sync Front-end * and update composer while we are at it * formatting * fix php-cs-fixer
1 parent 9d11738 commit bb98373

File tree

8 files changed

+232
-266
lines changed

8 files changed

+232
-266
lines changed

.github/workflows/php-cs-fixer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
coverage: none
3131
- name: Install PHP-CS-Fixer
3232
run: |
33-
curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.9.5/php-cs-fixer.phar -o .github/build/php-cs-fixer
33+
curl -L https://github.com/FriendsOfPHP/PHP-CS-Fixer/releases/download/v3.10.0/php-cs-fixer.phar -o .github/build/php-cs-fixer
3434
chmod a+x .github/build/php-cs-fixer
3535
- name: Prepare Git User
3636
run: |

app/Actions/Import/FromServer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected function determineMemLimit(): int
6464
break;
6565
default:
6666
break;
67-
// @codeCoverageIgnoreEnd
67+
// @codeCoverageIgnoreEnd
6868
}
6969
}
7070

app/Facades/Helpers.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
* @method static string getDeviceType()
1616
* @method static string trancateIf32(string $id, int $prevShortId = 0)
1717
* @method static string getExtension(string $filename, bool $isURI = false)
18-
* @method static bool hasPermissions(string $path)
19-
* @method static bool hasFullPermissions(string $path)
20-
* @method static int gcd(int $a, int $b)
18+
* @method static bool hasPermissions(string $path)
19+
* @method static bool hasFullPermissions(string $path)
20+
* @method static int gcd(int $a, int $b)
2121
* @method static string str_of_bool(bool $b)
22-
* @method static int data_index()
23-
* @method static int data_index_r()
24-
* @method static void data_index_set(int $idx = 0)
25-
* @method static array get_all_licenses()
22+
* @method static int data_index()
23+
* @method static int data_index_r()
24+
* @method static void data_index_set(int $idx = 0)
25+
* @method static array get_all_licenses()
2626
*/
2727
class Helpers extends Facade
2828
{

app/Facades/Lang.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
*
1313
* Keep the list of documented method in sync with {@link \App\Locale\Lang}.
1414
*
15-
* @method static string get(string $string)
16-
* @method static string get_code()
17-
* @method static string[] get_lang()
18-
* @method static string[] get_lang_available()
15+
* @method static string get(string $string)
16+
* @method static string get_code()
17+
* @method static string[] get_lang()
18+
* @method static string[] get_lang_available()
1919
* @method static LangFactory factory()
2020
*/
2121
class Lang extends Facade

app/Models/Album.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@
3636
* @property int $_lft
3737
* @property int $_rgt
3838
*
39-
* @method static AlbumBuilder query() Begin querying the model.
40-
* @method static AlbumBuilder with(array|string $relations) Begin querying the model with eager loading.
41-
* @method AlbumBuilder newModelQuery() Get a new, "pure" query builder for the model's table without any scopes, eager loading, etc.
42-
* @method AlbumBuilder newQuery() Get a new query builder for the model's table.
39+
* @method static AlbumBuilder query() Begin querying the model.
40+
* @method static AlbumBuilder with(array|string $relations) Begin querying the model with eager loading.
41+
* @method AlbumBuilder newModelQuery() Get a new, "pure" query builder for the model's table without any scopes, eager loading, etc.
42+
* @method AlbumBuilder newQuery() Get a new query builder for the model's table.
4343
*/
4444
class Album extends BaseAlbum implements Node
4545
{

0 commit comments

Comments
 (0)