You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
511 B
PHP
33 lines
511 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Renderer\Stub;
|
|
|
|
use Engelsystem\Renderer\Engine;
|
|
|
|
class EngineImplementation extends Engine
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function get(string $path, array $data = []): string
|
|
{
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function canRender(string $path): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getSharedData(): array
|
|
{
|
|
return $this->sharedData;
|
|
}
|
|
}
|