Browse Source

Added the procedure compiler to the Client class to match instructions in docs. http://jonnnnyw.github.io/php-phantomjs/4.0/caching/

Thiery Laverdure 10 years ago
parent
commit
b9cc9fd683
1 changed files with 11 additions and 0 deletions
  1. 11 0
      src/JonnyW/PhantomJs/Client.php

+ 11 - 0
src/JonnyW/PhantomJs/Client.php

@@ -197,4 +197,15 @@ class Client implements ClientInterface
     {
         return $this->procedure;
     }
+
+    /**
+     * Get procedure compiler.
+     *
+     * @access public
+     * @return \JonnyW\PhantomJs\Procedure\ProcedureCompilerInterface
+     */
+    public function getProcedureCompiler()
+    {
+        return $this->procedureCompiler;
+    }
 }