Skip to content

Commit

Permalink
Fix cs issues
Browse files Browse the repository at this point in the history
  • Loading branch information
bastianallgeier committed Nov 21, 2023
1 parent 3ee43bd commit 8c35abd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions config/methods.php
Original file line number Diff line number Diff line change
Expand Up @@ -469,9 +469,9 @@
* any permalinks in href/src attributes with
* the regular url
*
* This method is still experimental! You can use
* it to solve potential problems with permalinks
* already, but it might change in the future.
* This method is still experimental! You can use
* it to solve potential problems with permalinks
* already, but it might change in the future.
*/
'permalinksToUrls' => function (Field $field): Field {
if ($field->isNotEmpty() === true) {
Expand Down
2 changes: 1 addition & 1 deletion src/Cms/PluginAssets.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function ($asset) {

// collect all path segments
// (e.g. foo/, foo/bar/, foo/bar/baz.css) for the asset
for ($i=1, $max = count($parts); $i <= $max; $i++) {
for ($i = 1, $max = count($parts); $i <= $max; $i++) {
$paths[] = implode('/', array_slice($parts, 0, $i));

// TODO: remove when media hash is enforced as mandatory
Expand Down
2 changes: 1 addition & 1 deletion src/Database/Sql.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public function columnTypes(): array
* Combines an identifier (table and column)
*
* @param $values bool Whether the identifier is going to be used for a VALUES clause;
* only relevant for SQLite
* only relevant for SQLite
*/
public function combineIdentifier(string $table, string $column, bool $values = false): string
{
Expand Down

0 comments on commit 8c35abd

Please sign in to comment.