You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
362 B

<?php
namespace app\Core;
/**
* Description of Controller
*
* @author Lucas Awade
*/
abstract class Controller
{
const LOGGER_ACTIVE = true;
private $message;
public function message($message = null)
{
if (!$message) {
return $this->message;
}
$this->message = $message;
}
}