Skip to content

Commit 0931dd0

Browse files
committed
Fix CS errors
1 parent 74383ea commit 0931dd0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/Event/FootprintListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(?EntityInterface $user = null, array $config = [])
4747
}
4848

4949
/**
50-
* {@inheritDoc}
50+
* @inheritDoc
5151
*/
5252
public function implementedEvents(): array
5353
{

src/Model/Behavior/FootprintBehavior.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class FootprintBehavior extends Behavior
3333
];
3434

3535
/**
36-
* {@inheritDoc}
36+
* @inheritDoc
3737
*/
3838
public function initialize(array $config): void
3939
{
@@ -70,7 +70,7 @@ public function initialize(array $config): void
7070
}
7171

7272
/**
73-
* {@inheritDoc}
73+
* @inheritDoc
7474
*/
7575
public function implementedEvents(): array
7676
{

tests/TestCase/Model/Behavior/FootprintBehaviorTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,6 @@ public function testDispatchException()
120120
$behavior = $this->Table->behaviors()->Footprint;
121121
$behavior->setConfig('events', ['Model.beforeMarshal' => ['modified_by']]);
122122
$this->Table->getEventManager()->on('Model.beforeMarshal', [$behavior, 'dispatch']);
123-
$entity = $this->Table->newEntity([]);
123+
$this->Table->newEntity([]);
124124
}
125125
}

tests/bootstrap.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
}
1818
} while ($root !== $lastRoot);
1919

20-
throw new Exception("Cannot find the root of the application, unable to run tests");
20+
throw new Exception('Cannot find the root of the application, unable to run tests');
2121
};
2222
$root = $findRoot(__FILE__);
2323
unset($findRoot);

0 commit comments

Comments
 (0)