Skip to content

Commit b4b331d

Browse files
committed
WIP
Signed-off-by: alexmerlin <alex.merlin.1985@gmail.com>
1 parent 08053d3 commit b4b331d

34 files changed

+35
-36
lines changed

src/Type/Collection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function create(string $name): File
6060

6161
$collection->create($content);
6262

63-
Output::success(sprintf('Created Collection "%s"', $collection->getPath()));
63+
Output::success(sprintf('Created Collection: %s', $collection->getPath()));
6464

6565
return $collection;
6666
}

src/Type/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function create(string $name): File
7373

7474
$this->addMessage(Message::addCommandToConfig($command->getComponent()->getFqcn()));
7575

76-
Output::success(sprintf('Created Command "%s"', $command->getPath()));
76+
Output::success(sprintf('Created Command: %s', $command->getPath()));
7777

7878
return $command;
7979
}

src/Type/ConfigProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ public function create(string $name): File
9494
Message::addModuleToComposer($this->context->getRootNamespace(), $this->fileSystem->getModuleName())
9595
);
9696

97-
Output::success(sprintf('Created ConfigProvider "%s"', $configProvider->getPath()));
97+
Output::success(sprintf('Created ConfigProvider: %s', $configProvider->getPath()));
9898

9999
return $configProvider;
100100
}

src/Type/CoreConfigProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function create(string $name): File
5252
->addMessage(Message::addCoreConfigProviderToConfig($configProvider->getComponent()->getFqcn()))
5353
->addMessage(Message::addCoreModuleToComposer($this->fileSystem->getModuleName()));
5454

55-
Output::success(sprintf('Created Core ConfigProvider "%s"', $configProvider->getPath()));
55+
Output::success(sprintf('Created Core ConfigProvider: %s', $configProvider->getPath()));
5656

5757
return $configProvider;
5858
}

src/Type/Entity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function create(string $name): File
6767

6868
$this->addMessage(Message::generateMigration());
6969

70-
Output::success(sprintf('Created Entity "%s"', $entity->getPath()));
70+
Output::success(sprintf('Created Entity: %s', $entity->getPath()));
7171

7272
return $entity;
7373
}

src/Type/Form/CreateResourceForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function create(string $name): File
6868

6969
$form->create($content);
7070

71-
Output::success(sprintf('Created Form "%s"', $form->getPath()));
71+
Output::success(sprintf('Created Form: %s', $form->getPath()));
7272

7373
return $form;
7474
}

src/Type/Form/DeleteResourceForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function create(string $name): File
6868

6969
$form->create($content);
7070

71-
Output::success(sprintf('Created Form "%s"', $form->getPath()));
71+
Output::success(sprintf('Created Form: %s', $form->getPath()));
7272

7373
return $form;
7474
}

src/Type/Form/EditResourceForm.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function create(string $name): File
6868

6969
$form->create($content);
7070

71-
Output::success(sprintf('Created Form "%s"', $form->getPath()));
71+
Output::success(sprintf('Created Form: %s', $form->getPath()));
7272

7373
return $form;
7474
}

src/Type/Handler/Api/DeleteResourceHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function create(string $name): File
6767

6868
$handler->create($content);
6969

70-
Output::success(sprintf('Created Handler "%s"', $handler->getPath()));
70+
Output::success(sprintf('Created Handler: %s', $handler->getPath()));
7171

7272
return $handler;
7373
}

src/Type/Handler/Api/GetCollectionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public function create(string $name): File
6868

6969
$handler->create($content);
7070

71-
Output::success(sprintf('Created Handler "%s"', $handler->getPath()));
71+
Output::success(sprintf('Created Handler: %s', $handler->getPath()));
7272

7373
return $handler;
7474
}

0 commit comments

Comments
 (0)