diff --git a/ChangeLog b/ChangeLog index c63171b..bac5fc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,5 @@ 3.0.2 - 2018-08-16 + 2018-08-17 Daniel Lorenz * TASK #23: refactor extension manager warnings diff --git a/Classes/Domain/Model/Company.php b/Classes/Domain/Model/Company.php index a7ee5a0..12e73fe 100755 --- a/Classes/Domain/Model/Company.php +++ b/Classes/Domain/Model/Company.php @@ -26,7 +26,7 @@ class Company extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Name * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $name; diff --git a/Classes/Domain/Model/Contact.php b/Classes/Domain/Model/Contact.php index e16a3c7..91de1c4 100755 --- a/Classes/Domain/Model/Contact.php +++ b/Classes/Domain/Model/Contact.php @@ -40,7 +40,7 @@ class Contact extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * First Name * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $firstName; @@ -48,7 +48,7 @@ class Contact extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Last Name * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $lastName; diff --git a/Classes/Domain/Model/Country.php b/Classes/Domain/Model/Country.php index f554fd9..52f9ecd 100755 --- a/Classes/Domain/Model/Country.php +++ b/Classes/Domain/Model/Country.php @@ -26,7 +26,7 @@ class Country extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Iso2 * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $iso2 = ''; @@ -34,7 +34,7 @@ class Country extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Iso3 * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $iso3 = ''; @@ -42,7 +42,7 @@ class Country extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Name * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $name = ''; @@ -57,7 +57,7 @@ class Country extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * PhoneCountryCode * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $phoneCountryCode = ''; diff --git a/Classes/Domain/Model/Phone.php b/Classes/Domain/Model/Phone.php index a2c74dd..80e2cbc 100755 --- a/Classes/Domain/Model/Phone.php +++ b/Classes/Domain/Model/Phone.php @@ -33,7 +33,7 @@ class Phone extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity * Number * * @var string - * @TYPO3\CMS\Extbase\Annotation\Validate NotEmpty + * @TYPO3\CMS\Extbase\Annotation\Validate("NotEmpty") */ protected $number = '';