Hypothetically speaking, is it possible to use emoji characters in PHP namespaces? Are there any technical downsides?
Example:
<?php
/**
* app/controllers/HomeController.php
*
* @package
*/
namespace ;
use \Slim\Slim;
use \Requests;
class HomeController extends \\BaseController
{
/**
* Constructor
*/
function __construct() {
parent::__construct();
}
}