for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Ship\Engine\Butlers;
use App\Ship\Features\Exceptions\WrongConfigurationsException;
use Illuminate\Support\Facades\Config;
/**
* Class ContainersButler.
*
* Helper Class to serve on the Containers layer.
* @author Mahmoud Zalt <[email protected]>
*/
class ContainersButler
{
* @return mixed
public function getLoginWebPageName()
$loginPage = Config::get('hello.containers.login-page-name');
if (is_null($loginPage)) {
throw new WrongConfigurationsException();
}
return $loginPage;