Skip to content

Commit 78a34bb

Browse files
committed
fix information created class
1 parent 09994f3 commit 78a34bb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Commands/MakeRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public function createRepository(string $className, $isDefault = true)
119119
$repositoryPath,
120120
__DIR__ . "/stubs/$stubName"
121121
);
122-
$this->line("<info>Created $className repository:</info> " . $repositoryName);
122+
$this->line("<info>Created $className repository implement:</info> " . $repositoryName);
123123

124124
return $repositoryNamespace . "\\" . $className;
125125
}

src/Commands/MakeService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function createService(string $className)
7373
$this->getServicePath($className, $nameOfService),
7474
$stubPath
7575
);
76-
$this->line("<info>Created service:</info> {$serviceName}");
76+
$this->line("<info>Created $className service implement:</info> {$serviceName}");
7777
}
7878

7979
/**
@@ -103,7 +103,7 @@ public function createServiceInterface(string $className)
103103
$this->getServiceInterfacePath($className,$serviceName),
104104
__DIR__ . "/stubs/service-interface.stub"
105105
);
106-
$this->line("<info>Created interface of service:</info> {$serviceName}");
106+
$this->line("<info>Created $className service interface:</info> {$serviceName}");
107107
}
108108

109109
/**

0 commit comments

Comments
 (0)