for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Valkyrja Framework package.
*
* (c) Melech Mizrachi <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Valkyrja\Application;
use Valkyrja\Cli\Routing\Data as CliData;
use Valkyrja\Container\Data as ContainerData;
use Valkyrja\Event\Data as EventData;
use Valkyrja\Http\Routing\Data as HttpData;
/**
* Class AppData.
* @author Melech Mizrachi
class Data
{
public function __construct(
public ContainerData $container = new ContainerData(),
public EventData $event = new EventData(),
public CliData $cli = new CliData(),
public HttpData $http = new HttpData(),
) {
}