1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-08 06:06:45 +02:00

fix(flextype): fix PHPDoc tag @param references unknown parameter for Flextype

This commit is contained in:
Awilum
2021-08-09 20:37:06 +03:00
parent 7ea6fcb9e8
commit cd6817055a

View File

@@ -25,17 +25,21 @@ final class Flextype
/**
* The Flextype instance.
*
* @var array
* @var Flextype|null
*/
private static ?Flextype $instance = null;
/**
* The Flextype Application.
*
* @var App
*/
private static App $app;
/**
* The Flextype Application Container.
*
* @var Container
*/
private static Container $container;
@@ -82,7 +86,7 @@ final class Flextype
/**
* Get Flextype Application Container.
*
* @return Flextype Returns Flextype Application Container.
* @return Container Returns Flextype Application Container.
*
* @access public
*/