Redaxscript\Template\Tag::extraRaw PHP Method

extraRaw() public static method

extraRaw
Since: 3.0.0
public static extraRaw ( ) : Db
return Redaxscript\Db
    public static function extraRaw()
    {
        return Db::forTablePrefix('extras');
    }

Usage Example

Example #1
0
 /**
  * testExtraRaw
  *
  * @since 3.0.0
  */
 public function testExtraRaw()
 {
     /* actual */
     $actual = Template\Tag::extraRaw();
     /* compare */
     $this->assertInstanceOf('Redaxscript\\Db', $actual);
 }