for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Anomaly\UsersModule\User\Command;
use Illuminate\Contracts\Config\Repository;
/**
* Class GetLogoutPath
*
* @link http://pyrocms.com/
* @author PyroCMS, Inc. <[email protected]>
* @author Ryan Thompson <[email protected]>
*/
class GetLogoutPath
{
* Handle the command.
* @param Repository $config
* @return string
public function handle(Repository $config)
return $config->get('anomaly.module.users::paths.logout');
}