for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Events;
class BuiltDockerCompose
{
/** @var string */
public $filePath;
/**
* BuiltDockerCompose constructor.
*
* @param string $filePath
*/
public function __construct(string $filePath)
$this->filePath = $filePath;
}