for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @copyright 2018 Vladimir Jimenez
* @license https://github.com/allejo/stakx/blob/master/LICENSE.md MIT
*/
namespace allejo\stakx\Event;
use Symfony\Component\EventDispatcher\Event;
* A notification-only event that is fired whenever the website finishes building.
*
* @since 0.2.0
class BuildProcessComplete extends Event
{
const NAME = 'build.process.complete';
public function __construct()
}