<?php

trait foo {
}

var_dump(trait_exists('foo'));
var_dump(trait_exists(1));

?>