Skip to content

Commit

Permalink
WIP: Fix Format Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Timm Ortloff committed Jan 17, 2023
1 parent 7f67add commit 7d84d39
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/CloneTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ class CloneTest extends TestCase
'SelectOption' => 'test-value'
];

public static function noopCallback() {}
public static function noopCallback()
{
}

public function testFormElementsCloning(): void
{
Expand All @@ -57,7 +59,8 @@ public function testFormElementsCloning(): void
);

$this->registerCallbackFor($element, 'test-global-scope', 'strtolower');
$this->registerCallbackFor($element, 'test-instance-scope-noop-inline', function () {});
$this->registerCallbackFor($element, 'test-instance-scope-noop-inline', function () {
});
$this->registerCallbackFor($element, 'test-instance-noop-attribute', [$this, 'noopCallback']);

$this->registerCallbackFor(
Expand Down

0 comments on commit 7d84d39

Please sign in to comment.