for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Botonomous;
/**
* Class Channel.
*/
class Channel extends AbstractSlackEntity
{
private $name;
* @return string
public function getName()
return $this->name;
}
* @param string $name
public function setName($name)
$this->name = $name;