for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Flow;
use Bavix\FlowNative\FlowNative;
class Native extends FlowNative
{
/**
* @var Flow
*/
protected $flow;
* @param Flow $flow
public function setFlow(Flow $flow)
$this->flow = $flow;
}
public function render($view, array $arguments = [])
$this->content()->flow = $this->flow;
return parent::render($view, $arguments);