Skip to content

Fix missing namespace slash #336

Merged
merged 1 commit into from
Sep 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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