From b166b8b805ae97c15688d27323cae8976bd0f6dc Mon Sep 17 00:00:00 2001 From: Meritoo Date: Sat, 13 Apr 2019 21:47:49 +0200 Subject: [PATCH] PHP Coding Standards Fixer > fix coding standard --- tests/Type/OopVisibilityTypeTest.php | 40 ++++++++++++++-------------- 1 file changed, 20 insertions(+), 20 deletions(-) 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(); + } }