36 lines
703 B
PHP
Executable File
36 lines
703 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* To change this license header, choose License Headers in Project Properties.
|
|
* To change this template file, choose Tools | Templates
|
|
* and open the template in the editor.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace A2G\A2gMaps\Domain\Traits;
|
|
|
|
use TYPO3\CMS\Extbase\Service\ImageService;
|
|
|
|
/**
|
|
* Description of InjectImageServiceTrait
|
|
*
|
|
* @author Raphael Martin
|
|
*/
|
|
trait InjectImageServiceTrait {
|
|
|
|
/**
|
|
* imageService
|
|
*
|
|
* @var ImageService
|
|
*/
|
|
protected $imageService = null;
|
|
/**
|
|
* @param ImageService $imageService
|
|
*/
|
|
public function injectImageService(ImageService $imageService) {
|
|
$this->imageService = $imageService;
|
|
}
|
|
|
|
}
|