for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace FreedomCore\TrinityCore\Console\Commands;
use FreedomCore\TrinityCore\Console\Abstracts\BaseCommand;
/**
* Class GM
* @package FreedomCore\TrinityCore\Console\Commands
* @codeCoverageIgnore
*/
class GM extends BaseCommand
{
* @inheritdoc
* @var array
protected $concatenate = [
'announce',
'nameAnnounce',
'notify'
];
* Send announcement to all Game Masters
* @param string $announcement
* @return array|string
public function announce(string $announcement)
return $this->executeCommand(__FUNCTION__, get_defined_vars());
}
* Send announcement to all Game Masters (as console)
public function nameAnnounce(string $announcement)
* Send notification ot all Game Masters
* @param string $notification
public function notify(string $notification)