hclass() публичный Метод

Generates pretty class attributes.
public hclass ( array | string $classes, boolean $raw = false ) : string
$classes array | string
$raw boolean
Результат string Class attribute
Пример #1
0
 public function testHclassArrayRaw()
 {
     $app = $this->getApp();
     $handler = new AdminHandler($app);
     $result = $handler->hclass(['first', 'second'], true);
     $this->assertSame('first second', $result);
 }