for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of BlitzPHP Tasks.
*
* (c) 2025 Dimitri Sitchet Tomkeu <[email protected]>
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
namespace BlitzPHP\Tasks\Publishers;
use BlitzPHP\Publisher\Publisher;
class TasksPublisher extends Publisher
{
* {@inheritDoc}
protected string $source = __DIR__ . '/../Config/';
protected string $destination = CONFIG_PATH;
public function publish(): bool
return $this->addPaths(['tasks.php'])->merge(false);
}