From d5afa71b648f867b4ecd780efd4f68e1d752d508 Mon Sep 17 00:00:00 2001 From: Clemens Schwaighofer Date: Thu, 19 Jan 2023 08:58:02 +0900 Subject: [PATCH] Switch to standard PSR12 --- src/Noop.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/Noop.php b/src/Noop.php index d64006b..0e73801 100644 --- a/src/Noop.php +++ b/src/Noop.php @@ -10,12 +10,12 @@ namespace gullevek\Noop; */ final class Noop { - /** - * A dummy action that does nothing - * - * @return void - */ - public function noop() - { - } + /** + * A dummy action that does nothing + * + * @return void + */ + public function noop() + { + } }