Skip to content

Commit 8488f7a

Browse files
committed
minor docblock refactors
1 parent e48eb28 commit 8488f7a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/core/Dispatcher.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@
1818
* allows you to hook other functions to an event that can modify the
1919
* input parameters and/or the output.
2020
*
21-
* @license MIT, http://flightphp.com/license
21+
* @license MIT, https://docs.flightphp.com/license/
2222
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com>
23-
* @phpstan-template EngineTemplate of object
2423
*/
2524
class Dispatcher
2625
{
@@ -30,7 +29,6 @@ class Dispatcher
3029
/** Exception message if thrown by setting the container as a callable method. */
3130
protected ?Throwable $containerException = null;
3231

33-
/** @var ?Engine<EngineTemplate> $engine Engine instance. */
3432
protected ?Engine $engine = null;
3533

3634
/** @var array<string, callable(): (void|mixed)> Mapped events. */

src/core/Loader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
/**
1010
* The Loader class is responsible for loading objects. It maintains a list of
1111
* reusable class instances and can generate a new class instances with custom
12-
* initialization parameters. It also performs class autoloading.
12+
* initialization parameters.
1313
* @license MIT, https://docs.flightphp.com/license/
1414
* @copyright Copyright (c) 2011, Mike Cao <mike@mikecao.com>
1515
*/

0 commit comments

Comments
 (0)