Example #1
0
 public function Message(string $Input) : Self
 {
     /*//
     	send messages to the console if enabled.
     	//*/
     if (!$this->Config->Verbose) {
         return $this;
     }
     Nether\Console\Client::Message($Input);
     return $this;
 }