Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
meekstellar committed Dec 15, 2022
1 parent c0d662f commit bf3ba7e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/Schema/Renderer/Fixture/generated_schema.stub.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

return [
'user' => [
Schema::ENTITY => 'Cycle\\Schema\\Renderer\\Tests\\Fixture\\User',
Schema::MAPPER => 'Cycle\\ORM\\Mapper\\Mapper',
Schema::ENTITY => Cycle\Schema\Renderer\Tests\Fixture\User::class,
Schema::MAPPER => Cycle\ORM\Mapper\Mapper::class,
Schema::DATABASE => 'default',
Schema::TABLE => 'user',
Schema::PRIMARY_KEY => 'id',
Expand Down Expand Up @@ -43,8 +43,8 @@
Schema::SCHEMA => [],
],
'tag' => [
Schema::ENTITY => 'Cycle\\Schema\\Renderer\\Tests\\Fixture\\Tag',
Schema::MAPPER => 'Cycle\\ORM\\Mapper\\Mapper',
Schema::ENTITY => Cycle\Schema\Renderer\Tests\Fixture\Tag::class,
Schema::MAPPER => Cycle\ORM\Mapper\Mapper::class,
Schema::DATABASE => 'default',
Schema::TABLE => 'tag',
Schema::PRIMARY_KEY => ['id', 'name'],
Expand All @@ -66,8 +66,8 @@
Schema::SCHEMA => [],
],
'tag_context' => [
Schema::ENTITY => 'Cycle\\Schema\\Renderer\\Tests\\Fixture\\TagContext',
Schema::MAPPER => 'Cycle\\ORM\\Mapper\\Mapper',
Schema::ENTITY => Cycle\Schema\Renderer\Tests\Fixture\TagContext::class,
Schema::MAPPER => Cycle\ORM\Mapper\Mapper::class,
Schema::DATABASE => 'default',
Schema::TABLE => 'tag_user_map',
Schema::COLUMNS => [],
Expand Down

0 comments on commit bf3ba7e

Please sign in to comment.