for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yajra\CMS\Presenters;
use Laracasts\Presenter\Presenter;
class WidgetPresenter extends Presenter
{
/**
* Get widget's view template.
*
* @return string
*/
public function template()
return $this->entity->template === 'custom' ? $this->entity->custom_template : $this->entity->template;
}
* Get widget type FQCN.
* @throws \Exception
public function class()
/** @var \Yajra\CMS\Repositories\Extension\Repository $repository */
$repository = app('extensions');
$repository
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
$extension = $repository->findOrFail($this->entity->extension_id);
Only declaring a single property per statement allows you to later on add doc comments more easily.
It is also recommended by PSR2, so it is a common style that many people expect.
$extension
return $extension->param('class');