Barryvdh\Snappy\PdfWrapper::loadFile PHP Method

loadFile() public method

Load a HTML file
public loadFile ( string $file )
$file string
    public function loadFile($file)
    {
        $this->html = null;
        $this->file = $file;
        return $this;
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Load a HTML file
  *
  * @param string $file
  * @return static 
  * @static 
  */
 public static function loadFile($file)
 {
     return \Barryvdh\Snappy\PdfWrapper::loadFile($file);
 }