File: /home/timetracker.panomity.com/tm.old/Command/InstallCommand.php
<?php
/*
* This file is part of the TaskManagementBundle for Kimai 2.
* All rights reserved by Kevin Papst (www.kevinpapst.de).
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace KimaiPlugin\TaskManagementBundle\Command;
use App\Command\AbstractBundleInstallerCommand;
class InstallCommand extends AbstractBundleInstallerCommand
{
protected function getBundleCommandNamePart(): string
{
return 'tasks';
}
protected function getMigrationConfigFilename(): ?string
{
return __DIR__ . '/../Migrations/tasks.yaml';
}
}