30 lines
474 B
PHP
30 lines
474 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;
|
||
|
}
|
||
|
|
||
|
public function getSharedData(): array
|
||
|
{
|
||
|
return $this->sharedData;
|
||
|
}
|
||
|
}
|