Przeglądaj źródła

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 lat temu
rodzic
commit
b9cc9fd683
1 zmienionych plików z 11 dodań i 0 usunięć
  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;
+    }
 }