Skip to content

Commit

Permalink
Code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
annda committed Sep 19, 2024
1 parent c3ddeb3 commit 27c6a3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion action.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,3 @@ public function handleAclCheck(Doku_Event $event, $mode)
}
}
}

4 changes: 2 additions & 2 deletions helper.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class helper_plugin_structacl extends DokuWiki_Plugin
{
const STRUCTACL_SEPCHAR = '.';
public const STRUCTACL_SEPCHAR = '.';
/**
* Convert config lines "schema.field name" into an array
*
Expand All @@ -11,7 +11,7 @@ class helper_plugin_structacl extends DokuWiki_Plugin
*/
public function getConfiguration($confValue)
{
$lines = explode(PHP_EOL , $confValue);
$lines = explode(PHP_EOL, $confValue);
$config = [];

foreach ($lines as $line) {
Expand Down

0 comments on commit 27c6a3b

Please sign in to comment.