Skip to content

Commit 48b6ff7

Browse files
committed
Removed LoggerTrait.
1 parent f2cb62d commit 48b6ff7

11 files changed

Lines changed: 2 additions & 46 deletions

.vortex/tests/phpunit/Functional/FunctionalTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use AlexSkrypnyk\PhpunitHelpers\UnitTestCase;
1313
use DrevOps\Vortex\Tests\Traits\AssertProjectFilesTrait;
1414
use DrevOps\Vortex\Tests\Traits\GitTrait;
15-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
15+
use AlexSkrypnyk\PhpunitHelpers\Traits\LoggerTrait;
1616
use DrevOps\Vortex\Tests\Traits\Steps\StepBuildTrait;
1717
use DrevOps\Vortex\Tests\Traits\Steps\StepDownloadDbTrait;
1818
use DrevOps\Vortex\Tests\Traits\Steps\StepPrepareSutTrait;

.vortex/tests/phpunit/Traits/LoggerTrait.php

Lines changed: 0 additions & 16 deletions
This file was deleted.

.vortex/tests/phpunit/Traits/Steps/StepAhoyTrait.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44

55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

7-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
8-
97
/**
108
* Provides Ahoy command testing steps.
119
*/
1210
trait StepAhoyTrait {
1311

14-
use LoggerTrait;
15-
1612
protected function stepAhoyCli(): void {
1713
$this->logStepStart();
1814

.vortex/tests/phpunit/Traits/Steps/StepBuildTrait.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44

55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

7-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
8-
97
/**
108
* Provides build step.
119
*/
1210
trait StepBuildTrait {
1311

14-
use LoggerTrait;
15-
1612
protected function stepBuild(string $webroot = 'web', array $env = []): void {
1713
$this->logStepStart();
1814

.vortex/tests/phpunit/Traits/Steps/StepDatabaseTrait.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

77
use AlexSkrypnyk\File\File;
8-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
98

109
/**
1110
* Provides database operation testing steps.
1211
*/
1312
trait StepDatabaseTrait {
1413

15-
use LoggerTrait;
16-
1714
protected function stepAhoyExportDb(string $filename = ''): void {
1815
$this->logStepStart();
1916

.vortex/tests/phpunit/Traits/Steps/StepEnvironmentTrait.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

77
use AlexSkrypnyk\File\File;
8-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
98

109
/**
1110
* Provides environment and configuration testing steps.
1211
*/
1312
trait StepEnvironmentTrait {
1413

15-
use LoggerTrait;
16-
1714
protected function stepGitignore(): void {
1815
$this->logStepStart();
1916

.vortex/tests/phpunit/Traits/Steps/StepFrontendTrait.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

77
use AlexSkrypnyk\File\File;
8-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
98

109
/**
1110
* Provides frontend development testing steps.
1211
*/
1312
trait StepFrontendTrait {
1413

15-
use LoggerTrait;
16-
1714
protected function stepAhoyFei(string $webroot = 'web'): void {
1815
$this->logStepStart();
1916

.vortex/tests/phpunit/Traits/Steps/StepPrepareSutTrait.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

77
use AlexSkrypnyk\File\File;
8-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
98

109
/**
1110
* Provides system under test preparation step.
1211
*/
1312
trait StepPrepareSutTrait {
1413

15-
use LoggerTrait;
14+
1615
use StepDownloadDbTrait;
1716

1817
protected function stepPrepareSut(): void {

.vortex/tests/phpunit/Traits/Steps/StepServicesTrait.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,11 @@
44

55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

7-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
8-
97
/**
108
* Provides service testing steps (Solr, Redis).
119
*/
1210
trait StepServicesTrait {
1311

14-
use LoggerTrait;
15-
1612
protected function stepSolr(): void {
1713
$this->logStepStart();
1814

.vortex/tests/phpunit/Traits/Steps/StepTestBddTrait.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,12 @@
55
namespace DrevOps\Vortex\Tests\Traits\Steps;
66

77
use AlexSkrypnyk\File\File;
8-
use DrevOps\Vortex\Tests\Traits\LoggerTrait;
98

109
/**
1110
* Provides BDD testing step.
1211
*/
1312
trait StepTestBddTrait {
1413

15-
use LoggerTrait;
16-
1714
protected function stepTestBdd(): void {
1815
$this->logStepStart();
1916

0 commit comments

Comments
 (0)