mirror of
https://github.com/jupeter/clean-code-php.git
synced 2025-09-26 14:08:59 +02:00
Fix variable type in PHPDoc
This commit is contained in:
committed by
GitHub
parent
1db3e5301b
commit
0c89c48adb
@@ -1431,7 +1431,7 @@ class SuperWorker implements WorkerInterface {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class Manager {
|
class Manager {
|
||||||
/** @var Worker $worker **/
|
/** @var WorkerInterface $worker **/
|
||||||
private $worker;
|
private $worker;
|
||||||
|
|
||||||
public function __construct(WorkerInterface $worker) {
|
public function __construct(WorkerInterface $worker) {
|
||||||
|
Reference in New Issue
Block a user