diff --git a/flight/Flight.php b/flight/Flight.php index e6cdcac..69a8b65 100644 --- a/flight/Flight.php +++ b/flight/Flight.php @@ -57,11 +57,22 @@ class Flight */ private static Engine $engine; - // Don't allow object instantiation + /** + * Don't allow object instantiation + * + * @codeCoverageIgnore + * @return void + */ private function __construct() { } + /** + * Forbid cloning the class + * + * @codeCoverageIgnore + * @return void + */ private function __clone() { }