for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
Install GitHub App
<?php
/**
* Created by PhpStorm.
* User: Marky
* Date: 23/01/2018
* Time: 15:14.
*/
namespace App\Plugins\Newsletters;
use App\Plugins\PluginHandler;
use App\Classes\Interfaces\Installable;
* Class NewsletterController.
class NewslettersController extends PluginHandler implements Installable
{
* Return the icon associated with this plugin.
public function icon()
return 'fa-book';
}
* Return the version for this plugin.
public function version()
return '1.0';
* The steps required for this plugin product to fully
* integrate into the webservice.
*
* @return bool
public function install()
// TODO: Implement install() method.
* remove itself from the webservice.
public function uninstall()
// TODO: Implement uninstall() method.