Skip to content

Commit 3527e61

Browse files
Fix PHPDoc after Symfony lib removal
1 parent 4aca3dd commit 3527e61

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/Event/Dispatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class Dispatcher
2525
/**
2626
* Add subscriber that receives events
2727
*
28-
* @param \phpbu\App\Result\Event\Subscriber $subscriber
28+
* @param \phpbu\App\Event\Subscriber $subscriber
2929
*/
3030
public function addSubscriber(Subscriber $subscriber): void
3131
{

src/Result.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,28 +20,28 @@
2020
class Result
2121
{
2222
/**
23-
* Symfony EventDispatcher.
23+
* EventDispatcher
2424
*
25-
* @var \Symfony\Component\EventDispatcher\EventDispatcher
25+
* @var \phpbu\App\Event\Dispatcher
2626
*/
2727
protected $eventDispatcher;
2828

2929
/**
30-
* List of executed Backups.
30+
* List of executed Backups
3131
*
3232
* @var array<\phpbu\App\Result\Backup>
3333
*/
3434
protected $backups = [];
3535

3636
/**
37-
* Currently running backup.
37+
* Currently running backup
3838
*
3939
* @var \phpbu\App\Result\Backup
4040
*/
4141
protected $backupActive;
4242

4343
/**
44-
* List of errors.
44+
* List of errors
4545
*
4646
* @var array
4747
*/

0 commit comments

Comments
 (0)