TestableCommand.php 342 B

1234567891011121314
  1. <?php namespace thiagoalessio\TesseractOCR\Tests\Unit;
  2. use thiagoalessio\TesseractOCR\Command;
  3. class TestableCommand extends Command
  4. {
  5. public function __construct($image=null, $version='3.05')
  6. {
  7. parent::__construct($image, 'tmpfile');
  8. $this->version = $version;
  9. }
  10. public function getTesseractVersion() { return $this->version; }
  11. }