Match docblock to defined param name.

The mismatch triggers symfonys debug class loader with:

```
  1x: The "Vfs\Node\Factory\NodeFactory::buildFileLink()" method will require a new "FileInterface $file" argument in the next major version of its interface "Vfs\Node\Factory\NodeFactoryInterface", not defining it is deprecated.
    1x in BundleManagerTest::setUp from App\Tests\Unit\Console
```
This commit is contained in:
Sam 2021-09-21 08:54:36 +08:00 committed by GitHub
parent 610649d759
commit c7b556858d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -35,7 +35,7 @@ interface NodeFactoryInterface
public function buildFile($content = '');
/**
* @param FileInterface $file
* @param FileInterface $target
* @return LinkInterface
*/
public function buildFileLink(FileInterface $target);