for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace BEAR\AppMeta;
final class ResMeta
{
/**
* URI path
*
* @var string
*/
public $uriPath;
* Class name
public $class;
* File path
public $filePath;
public function __construct(string $uriPath, string $class, string $filePath)
$this->uriPath = $uriPath;
$this->class = $class;
$this->filePath = $filePath;
}