diff --git a/circle.yml b/circle.yml new file mode 100644 index 0000000..23b55d1 --- /dev/null +++ b/circle.yml @@ -0,0 +1,3 @@ +machine: + php: + version: 7.1.3 \ No newline at end of file diff --git a/src/PdfaTask.php b/src/PdfaTask.php new file mode 100644 index 0000000..9de0f95 --- /dev/null +++ b/src/PdfaTask.php @@ -0,0 +1,43 @@ +tool = 'pdfa'; + parent::__construct($publicKey, $secretKey); + } + + /** + * @param string $conformance + */ + public function setConformance($conformance) + { + $this->conformance = $conformance; + } + + /** + * @param null $processData + * @return mixed + */ + public function execute($processData = null) + { + return parent::execute(get_object_vars($this)); + } +}