1
0
mirror of https://github.com/jupeter/clean-code-php.git synced 2025-09-25 21:49:04 +02:00

Fix variable type in PHPDoc

This commit is contained in:
Guilherme Portela
2017-09-03 10:20:14 -03:00
committed by GitHub
parent 1db3e5301b
commit 0c89c48adb

View File

@@ -1431,7 +1431,7 @@ class SuperWorker implements WorkerInterface {
}
class Manager {
/** @var Worker $worker **/
/** @var WorkerInterface $worker **/
private $worker;
public function __construct(WorkerInterface $worker) {