<?php


trait Hello
{
	public static function world()
	{
		return "HELLO WORLD";
	}
}



var_dump(Hello::world());