<?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; } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
CompilerEngine.php | File | 3.79 KB | 0644 |
|
Engine.php | File | 385 B | 0644 |
|
EngineResolver.php | File | 1.51 KB | 0644 |
|
FileEngine.php | File | 810 B | 0644 |
|
PhpEngine.php | File | 1.92 KB | 0644 |
|