• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

orchestral / canvas-core / 12570838816

01 Jan 2025 12:55PM UTC coverage: 83.212%. Remained the same
12570838816

push

github

crynobone
wip

Signed-off-by: Mior Muhammad Zaki <crynobone@gmail.com>

1 of 2 new or added lines in 2 files covered. (50.0%)

114 of 137 relevant lines covered (83.21%)

2.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/Commands/MigrationGeneratorCommand.php
1
<?php
2

3
namespace Orchestra\Canvas\Core\Commands;
4

5
use Illuminate\Console\MigrationGeneratorCommand as Command;
6
use Orchestra\Canvas\Core\Concerns\MigrationGenerator;
7

8
/**
9
 * @property string|null $name
10
 * @property string|null $description
11
 */
12
abstract class MigrationGeneratorCommand extends Command
13
{
14
    use MigrationGenerator;
15

16
    /** {@inheritDoc} */
17
    #[\Override]
18
    protected function configure()
19
    {
NEW
20
        parent::configure();
×
21

22
        $this->addGeneratorPresetOptions();
×
23
    }
24

25
    /** {@inheritDoc} */
26
    #[\Override]
27
    protected function createBaseMigration($table)
28
    {
29
        return $this->createBaseMigrationUsingCanvas($table);
×
30
    }
31

32
    /** {@inheritDoc} */
33
    #[\Override]
34
    protected function migrationExists($table)
35
    {
36
        return $this->migrationExistsUsingCanvas($table);
×
37
    }
38
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc