You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DummyCamera.php 400B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 11/24/15
  6. * Time: 12:56 PM
  7. */
  8. namespace App\Http\Business\Cameras;
  9. use App\Http\DBO\CamerasImageDbo;
  10. class DummyCamera extends AbstractCamera
  11. {
  12. /**
  13. * @return CamerasImageDbo
  14. */
  15. public function getImage()
  16. {
  17. $imageDbo = new CamerasImageDbo();
  18. $imageDbo->setImage(42);
  19. return $imageDbo;
  20. }
  21. }