Enforced property types comments in one line

This commit is contained in:
Alejandro Celaya
2018-11-20 19:30:27 +01:00
parent 15a70d0157
commit 0ae5a53d86
161 changed files with 303 additions and 903 deletions

View File

@@ -19,21 +19,13 @@ use function array_key_exists;
abstract class AbstractTrackingAction implements MiddlewareInterface
{
/**
* @var UrlShortenerInterface
*/
/** @var UrlShortenerInterface */
private $urlShortener;
/**
* @var VisitsTrackerInterface
*/
/** @var VisitsTrackerInterface */
private $visitTracker;
/**
* @var AppOptions
*/
/** @var AppOptions */
private $appOptions;
/**
* @var LoggerInterface
*/
/** @var LoggerInterface */
private $logger;
public function __construct(