getCanonical() публичный статический Метод

get the canonical
С версии: 3.0.0
public static getCanonical ( ) : string
Результат string
Пример #1
0
 /**
  * testGetCanonical
  *
  * @since 3.0.0
  *
  * @param array $registryArray
  * @param string $expect
  *
  * @dataProvider providerGetCanonical
  */
 public function testCanonical($registryArray = [], $expect = null)
 {
     /* setup */
     $this->_registry->init($registryArray);
     /* actual */
     $actual = Template\Helper::getCanonical();
     /* compare */
     $this->assertEquals($expect, $actual);
 }