release 1.19 (#3215)
This commit is contained in:
@@ -17,11 +17,11 @@ class Constants
|
||||
/**
|
||||
* The current release version
|
||||
*/
|
||||
public const VERSION = '1.18.3';
|
||||
public const VERSION = '1.19';
|
||||
/**
|
||||
* The current release: major * 10000 + minor * 100 + patch
|
||||
*/
|
||||
public const VERSION_ID = 11803;
|
||||
public const VERSION_ID = 11900;
|
||||
/**
|
||||
* The current release status, either "stable" or "dev"
|
||||
*/
|
||||
|
||||
@@ -43,11 +43,9 @@ class TagFixtures extends Fixture
|
||||
$tag = new Tag();
|
||||
|
||||
$tagName = null;
|
||||
if ($i % 2 == 9) {
|
||||
$tagName = $faker->companyEmail;
|
||||
} elseif ($i % 2 == 8) {
|
||||
if ($i % 18 == 0) {
|
||||
$tagName = $faker->firstName;
|
||||
} elseif ($i % 2 == 7) {
|
||||
} elseif ($i % 7 == 0) {
|
||||
$tagName = $faker->lastName;
|
||||
} elseif ($i % 5 == 0) {
|
||||
$tagName = $faker->city;
|
||||
|
||||
@@ -17,7 +17,7 @@ use DateTimeInterface;
|
||||
final class MonthlyStatistic implements DateStatisticInterface
|
||||
{
|
||||
/**
|
||||
* @var array<string, array<int, StatisticDate>>
|
||||
* @var array<string|int, array<int<1, 12>, StatisticDate>>
|
||||
*/
|
||||
private $years = [];
|
||||
private $begin;
|
||||
|
||||
@@ -26,7 +26,7 @@ class HexColorValidator extends ConstraintValidator
|
||||
|
||||
$color = $value;
|
||||
|
||||
if ($color === null || (\is_string($color) && empty($color))) {
|
||||
if ($color === null || $color === '') {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user