Skip to content

Commit

Permalink
Fixed static code analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
siad007 committed Sep 27, 2024
1 parent 8b54e95 commit ef027d3
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions src/Phing/Listener/DisguiseLogger.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,29 @@ public function messageLogged(BuildEvent $event)
parent::messageLogged($event);
}

public function buildStarted(BuildEvent $event) {}
public function buildStarted(BuildEvent $event)
{
}

public function buildFinished(BuildEvent $event) {}
public function buildFinished(BuildEvent $event)
{
}

public function targetStarted(BuildEvent $event) {}
public function targetStarted(BuildEvent $event)
{
}

public function targetFinished(BuildEvent $event) {}
public function targetFinished(BuildEvent $event)
{
}

public function taskStarted(BuildEvent $event) {}
public function taskStarted(BuildEvent $event)
{
}

public function taskFinished(BuildEvent $event) {}
public function taskFinished(BuildEvent $event)
{
}

protected function maskUriPassword(BuildEvent $event): void
{
Expand Down

0 comments on commit ef027d3

Please sign in to comment.