LaravelでModelクラスを通してdbにインサートしたいのですが、
PHP8関係(?)のエラーコード **"must be of type stdClass, App\Models....."**の実行時エラーが出てしまいました。
メソッドの引数の前に型宣言するのはphpでは見かけず、さらに\stdClassの型の仕様など、どの型に合わせてあげるか見当がつきません。
今回したいことは後述のDrinkRepository.phpのcreateDrinkModelメソッドを通って
dbに一行追加させることなんですが詳しい方がいましたら教えて下さい。
よろしくお願いいたします。
##エラーコード
1) Tests\Unit\Services\Drink\DrinkServiceBuyTest::test_buy_should_throws_no_stock_exception_if_stock_0_or_less TypeError: App\Repositories\DrinkRepository::createDrinkModel(): Argument #1 ($d) must be of type stdClass, App\Models\Drink given, called in /Users/tom/dev/src/tests/Unit/Services/Drink/DrinkServiceBuyTest.php on line 24 /Users/tom/dev/src/app/Repositories/DrinkRepository.php:32 /Users/tom/dev/src/tests/Unit/Services/Drink/DrinkServiceBuyTest.php:24
##ソース
PHPUnjit
1#tests/Unit/Services/Drink/DrinkServiceBuyTest.php 2<?php 3 4declare(strict_types=1); 5 6namespace Tests\Unit\Services\Drink; 7 8use App\Models\Drink; 9use App\Repositories\DrinkRepository; 10use App\Repositories\UserRepository; 11use Tests\TestCase; 12 13class DrinkServiceBuyTest extends TestCase 14{ 15 16 // 17 public function test_buy_should_throws_no_stock_exception_if_stock_0_or_less(): void 18 { 19 $this->drinkRepository = new DrinkRepository(); 20 $newDrink = new Drink(7,"ジュース",100,5,false); 21 22 $this->drinkRepository->createDrinkModel($newDrink); 23 24 25 } 26} 27
#app/Repositories/DrinkRepository.php <?php declare(strict_types=1); namespace App\Repositories; use App\Exceptions\Drink\NotFoundException; use App\Models\Drink; use Illuminate\Database\ConnectionInterface; /** * Class DrinkRepository * @package App\Repositories */ final class DrinkRepository { /** * テーブル名 */ private const TABLE = 'drinks'; /** * @var ConnectionInterface */ private ConnectionInterface $connection; public function __construct() { $this->connection = app()->get(ConnectionInterface::class); } //ここでこける!!!!!!!!!! public function createDrinkModel(\stdClass $d): Drink { $this->connection ->table(self::TABLE)->insert( [ 'id' => $d->id, 'name' => $d->name, 'price' => $d->price, 'stock' => $d->stock, 'is_alcohol' => $d->isAlcohol, ] ); return new Drink( $d->id, $d->name, $d->price, $d->stock, (boolean)$d->is_alcohol, ); } /* public function all(): iterable { return $this->connection->table(self::TABLE) ->get() ->map(fn(\stdClass $d) => $this->createDrinkModel($d)); } public function find(int $id): ?Drink { $d = $this->connection->table(self::TABLE) ->find($id); return is_null($d) ? null : $this->createDrinkModel($d); } public function save(Drink $drink): void { $query = $this->connection->table(self::TABLE) ->where('id', $drink->id); if (!$query->exists()) { throw new NotFoundException('ドリンクの新規作成はできません。'); } $query->update( [ 'name' => $drink->name, 'price' => $drink->price, 'stock' => $drink->stock, 'is_alcohol' => $drink->isAlcohol, ] ); } */ }
Model
1<?php 2 3declare(strict_types=1); 4 5namespace App\Models; 6 7/** 8 * Class Drink 9 * @package App\Models 10 * 11 * @property-read int $id ID 12 * @property string $name 商品名 13 * @property int $price 価格 14 * @property int $stock 在庫数 15 * @property boolean $isAlcohol アルコール飲料であるか 16 */ 17class Drink 18{ 19 public function __construct( 20 private int $id, 21 private string $name, 22 private int $price, 23 private int $stock, 24 private bool $isAlcohol, 25 ) { 26 } 27 28 public function __get(string $name) 29 { 30 return $this->{$name}; 31 } 32} 33
回答1件
あなたの回答
tips
プレビュー