for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Step to log off a Cloud Foundry instance.
*/
namespace Graviton\Deployment\Steps\CloudFoundry;
* @author List of contributors <https://github.com/libgraviton/deploy-scripts/graphs/contributors>
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @link http://swisscom.ch
final class StepLogout extends AbstractStep
{
* returns the command
*
* @return array
public function getCommand()
return array(
$this->configuration['cf_bin'],
'logout'
);
}