Remove --class from class property in starship repository.

This commit is contained in:
Krzysztof Płaczek
2024-10-18 17:59:16 +02:00
parent d2d2de4b85
commit 0681f1ac28

View File

@@ -19,16 +19,16 @@ class StarshipRepository
return [
new Starship(1, 'Starship 01', 'Heavy Starship', 'Human Captain', StarshipStatusEnum::COMPLETED),
new Starship(2, 'Starship 02', 'Light Starship', 'Robot Captain', StarshipStatusEnum::IN_PROGRESS),
new Starship(3, 'USS Voyager', 'Intrepid-class', 'Kathryn Janeway', StarshipStatusEnum::WAITING),
new Starship(4, 'Starblade', 'Interceptor-class', 'Lance Stellar', StarshipStatusEnum::COMPLETED),
new Starship(5, 'Black Star', 'Battlecruiser-class', 'Zara Nox', StarshipStatusEnum::WAITING),
new Starship(6, 'SS Horizon', 'Explorer-class', 'James Marshall', StarshipStatusEnum::COMPLETED),
new Starship(7, 'Nebula Queen', 'Transport-class', 'Elara Trent', StarshipStatusEnum::IN_PROGRESS),
new Starship(8, 'Celestial Wave', 'Frigate-class', 'Talon Skye', StarshipStatusEnum::IN_PROGRESS),
new Starship(9, 'Galactic Serpent', 'Destroyer-class', 'Viktor Helios', StarshipStatusEnum::COMPLETED),
new Starship(10, 'Phoenix Wing', 'Carrier-class', 'Aurora Drake', StarshipStatusEnum::COMPLETED),
new Starship(11, 'Silver Comet', 'Scout-class', 'Finn O\'Neil', StarshipStatusEnum::WAITING),
new Starship(12, 'Crimson Spear', 'Corvette-class', 'Raven Callen', StarshipStatusEnum::IN_PROGRESS),
new Starship(3, 'USS Voyager', 'Intrepid', 'Kathryn Janeway', StarshipStatusEnum::WAITING),
new Starship(4, 'Starblade', 'Interceptor', 'Lance Stellar', StarshipStatusEnum::COMPLETED),
new Starship(5, 'Black Star', 'Battlecruiser', 'Zara Nox', StarshipStatusEnum::WAITING),
new Starship(6, 'SS Horizon', 'Explorer', 'James Marshall', StarshipStatusEnum::COMPLETED),
new Starship(7, 'Nebula Queen', 'Transport', 'Elara Trent', StarshipStatusEnum::IN_PROGRESS),
new Starship(8, 'Celestial Wave', 'Frigate', 'Talon Skye', StarshipStatusEnum::IN_PROGRESS),
new Starship(9, 'Galactic Serpent', 'Destroyer', 'Viktor Helios', StarshipStatusEnum::COMPLETED),
new Starship(10, 'Phoenix Wing', 'Carrier', 'Aurora Drake', StarshipStatusEnum::COMPLETED),
new Starship(11, 'Silver Comet', 'Scout', 'Finn O\'Neil', StarshipStatusEnum::WAITING),
new Starship(12, 'Crimson Spear', 'Corvette', 'Raven Callen', StarshipStatusEnum::IN_PROGRESS),
];
}