Update 'RealTime/src/RealTime/tellTimeTask.php'

This commit is contained in:
Josh North 2017-07-26 09:39:57 -04:00
parent be5212b90b
commit 88515642b3

View File

@ -1,34 +1,34 @@
<?php
/**
* Created by PhpStorm.
* User: Guillaume
* Date: 06/07/2015
* Time: 11:00
*/
namespace RealTime;
use pocketmine\scheduler\PluginTask;
class tellTimeTask extends PluginTask{
/**
* Actions to execute when run
*
* @param $currentTick
*
* @return void
*/
public $plugin;
public function __construct($plugin){
parent::__construct($plugin);
$this->plugin = $plugin;
}
public function onRun($currentTick)
{
// TODO: Implement onRun() method.
}
<?php
/**
* Created by PhpStorm.
* User: Guillaume
* Date: 06/07/2015
* Time: 11:00
*/
namespace RealTime;
use pocketmine\scheduler\PluginTask;
class tellTimeTask extends PluginTask{
/**
* Actions to execute when run
*
* @param $currentTick
*
* @return void
*/
public $plugin;
public function __construct($plugin){
parent::__construct($plugin);
$this->plugin = $plugin;
}
public function onRun(int $currentTick)
{
// TODO: Implement onRun() method.
}
}