KstychPAMI.php 558 Bytes
<?php namespace App\Console\Commands;

use Illuminate\Console\Command;

use App\Jobs\KPAMIListen;

class KstychPAMI extends Command {

	/**
	 * The console command name.
	 *
	 * @var string
	 */
	protected $signature = 'KstychPAMI {serverip=127.0.0.1}';

	/**
	 * The console command description.
	 *
	 * @var string
	 */
	protected $description = 'Daemon to Listen to Asterisk';

	/**
	 * Execute the console command.
	 *
	 * @return mixed
	 */
	public function handle()
	{
		$listener = new KPAMIListen($this->argument('serverip'));$listener->run();
	}

}