diff --git a/tests/Type/OopVisibilityTypeTest.php b/tests/Type/OopVisibilityTypeTest.php index f501dcd..9f5ee5f 100644 --- a/tests/Type/OopVisibilityTypeTest.php +++ b/tests/Type/OopVisibilityTypeTest.php @@ -23,26 +23,6 @@ use Meritoo\Common\Type\OopVisibilityType; */ class OopVisibilityTypeTest extends BaseTypeTestCase { - /** - * {@inheritdoc} - */ - protected function getAllExpectedTypes(): array - { - return [ - 'IS_PRIVATE' => 3, - 'IS_PROTECTED' => 2, - 'IS_PUBLIC' => 1, - ]; - } - - /** - *{@inheritdoc} - */ - protected function getTestedTypeInstance(): BaseType - { - return new OopVisibilityType(); - } - /** * {@inheritdoc} */ @@ -83,4 +63,24 @@ class OopVisibilityTypeTest extends BaseTypeTestCase true, ]; } + + /** + * {@inheritdoc} + */ + protected function getAllExpectedTypes(): array + { + return [ + 'IS_PRIVATE' => 3, + 'IS_PROTECTED' => 2, + 'IS_PUBLIC' => 1, + ]; + } + + /** + *{@inheritdoc} + */ + protected function getTestedTypeInstance(): BaseType + { + return new OopVisibilityType(); + } }