Flow\Helper::title PHP Method

title() public static method

public static title ( $obj = null )
    public static function title($obj = null)
    {
        return ucwords(strval($obj));
    }

Usage Example

Beispiel #1
0
 public function test_title()
 {
     $this->assertEquals('Foo-bar', Helper::title('foo-bar'));
     $this->assertEquals('This Is The Title', Helper::title('this is the title'));
 }