add seo plugin
This commit is contained in:
parent
23dbb65314
commit
e69dc23c91
1909 changed files with 1111579 additions and 10 deletions
21
vendor/spatie/schema-org/generator/Console/Application.php
vendored
Normal file
21
vendor/spatie/schema-org/generator/Console/Application.php
vendored
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<?php
|
||||
|
||||
namespace Spatie\SchemaOrg\Generator\Console;
|
||||
|
||||
use Symfony\Component\Console\Application as ConsoleApplication;
|
||||
|
||||
class Application extends ConsoleApplication
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct('Spatie\SchemaOrg package generator', '1.0.0');
|
||||
|
||||
$this->add(new GenerateCommand());
|
||||
$this->setDefaultCommand('generate', true);
|
||||
}
|
||||
|
||||
public function getLongVersion()
|
||||
{
|
||||
return parent::getLongVersion().' by <comment>Spatie</comment>';
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue