Added property types to all non-deprecated classes

This commit is contained in:
Alejandro Celaya
2019-12-29 22:48:40 +01:00
parent b904c6d00d
commit a830420d75
66 changed files with 122 additions and 231 deletions

View File

@@ -16,10 +16,8 @@ use Zend\Diactoros\Response\JsonResponse;
abstract class AbstractCreateShortUrlAction extends AbstractRestAction
{
/** @var UrlShortenerInterface */
private $urlShortener;
/** @var array */
private $domainConfig;
private UrlShortenerInterface $urlShortener;
private array $domainConfig;
public function __construct(
UrlShortenerInterface $urlShortener,