24 lines
362 B
PHP
Executable File
24 lines
362 B
PHP
Executable File
<?php
|
|
|
|
namespace Illuminate\View\Engines;
|
|
|
|
abstract class Engine
|
|
{
|
|
/**
|
|
* The view that was last to be rendered.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $lastRendered;
|
|
|
|
/**
|
|
* Get the last view that was rendered.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function getLastRendered()
|
|
{
|
|
return $this->lastRendered;
|
|
}
|
|
}
|