Skip to content

Commit

Permalink
Update PHPDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Feb 9, 2024
1 parent d587f54 commit b28a1ea
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/MyApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function getPath(): string
*
* @see https://learn.userfrosting.com/sprinkles/recipe#dependent-sprinkles
*
* @return string[]|SprinkleRecipe[]
* @return class-string<SprinkleRecipe>[]
*/
public function getSprinkles(): array
{
Expand All @@ -76,7 +76,7 @@ public function getSprinkles(): array
*
* @see https://learn.userfrosting.com/sprinkles/recipe#routes
*
* @return string[]
* @return class-string<\UserFrosting\Routes\RouteDefinitionInterface>[]
*/
public function getRoutes(): array
{
Expand All @@ -90,7 +90,7 @@ public function getRoutes(): array
*
* @see https://learn.userfrosting.com/sprinkles/recipe#services
*
* @return string[]|\UserFrosting\ServicesProvider\ServicesProviderInterface[]
* @return class-string<\UserFrosting\ServicesProvider\ServicesProviderInterface>[]
*/
public function getServices(): array
{
Expand All @@ -104,7 +104,7 @@ public function getServices(): array
*
* @see https://learn.userfrosting.com/sprinkles/recipe#bakeryrecipe
*
* @return string[]
* @return class-string<\Symfony\Component\Console\Command\Command>[]
*/
public function getBakeryCommands(): array
{
Expand Down

0 comments on commit b28a1ea

Please sign in to comment.