Skip to content

Commit

Permalink
Fix missing namespace slash (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ioannis authored Sep 13, 2025
1 parent cec8845 commit 730c675
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/src/Command/JobCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

class JobCommand extends BaseCommand
{
use Cake\ORM\Locator\LocatorAwareTrait;
use \Cake\ORM\Locator\LocatorAwareTrait;

/**
* Register command specific options.
Expand Down
2 changes: 1 addition & 1 deletion app/src/Command/NotificationCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

class NotificationCommand extends BaseCommand
{
use Cake\ORM\Locator\LocatorAwareTrait;
use \Cake\ORM\Locator\LocatorAwareTrait;

/**
* Register command specific options.
Expand Down
2 changes: 1 addition & 1 deletion app/src/Command/SetupCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

class SetupCommand extends BaseCommand
{
use Cake\ORM\Locator\LocatorAwareTrait;
use \Cake\ORM\Locator\LocatorAwareTrait;

/**
* Register command specific options.
Expand Down
2 changes: 1 addition & 1 deletion app/src/Command/TestCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

class TestCommand extends BaseCommand
{
use Cake\ORM\Locator\LocatorAwareTrait;
use \Cake\ORM\Locator\LocatorAwareTrait;

protected $io = null;

Expand Down
2 changes: 1 addition & 1 deletion app/src/Command/UpgradeCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

class UpgradeCommand extends BaseCommand
{
use Cake\ORM\Locator\LocatorAwareTrait;
use \Cake\ORM\Locator\LocatorAwareTrait;

protected $io = null;

Expand Down

0 comments on commit 730c675

Please sign in to comment.