Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
dergel committed Jan 9, 2024
1 parent 0adbe0d commit 98dcf3e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 31 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"require-dev": {
"redaxo/php-cs-fixer-config": "^2.0",
"friendsofphp/php-cs-fixer": "^3.14",
"friendsofphp/php-cs-fixer": "v3.37.1",
"phpunit/phpunit": "^9.5"
},
"scripts": {
Expand Down
32 changes: 8 additions & 24 deletions lib/yform/base_abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,40 +102,24 @@ public function getDefinitions(): array
return [];
}

public function preValidateAction(): void
{
}
public function preValidateAction(): void {}

public function postValidateAction(): void
{
}
public function postValidateAction(): void {}

public function postValueAction(): void
{
}
public function postValueAction(): void {}

public function postFormAction(): void
{
}
public function postFormAction(): void {}

public function preAction(): void
{
}
public function preAction(): void {}

public function executeAction(): void
{
}
public function executeAction(): void {}

public function postAction(): void
{
}
public function postAction(): void {}

public function isDeprecated(): bool
{
return false;
}

public function init()
{
}
public function init() {}
}
8 changes: 2 additions & 6 deletions lib/yform/value/abstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,7 @@ public function isViewable()
return true;
}

public function enterObject()
{
}
public function enterObject() {}

public function init()
{
}
public function init() {}
}

0 comments on commit 98dcf3e

Please sign in to comment.