Release 1.19.6 (#3277)
This commit is contained in:
12
composer.lock
generated
12
composer.lock
generated
@@ -11838,16 +11838,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "1.6.0",
|
||||
"version": "1.6.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpstan.git",
|
||||
"reference": "b480ba2ae0699a72d43a340c20b9c00ede91ee3e"
|
||||
"reference": "e8852764cf5ec8dcd2a3fa8ea03cbcf523639419"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/b480ba2ae0699a72d43a340c20b9c00ede91ee3e",
|
||||
"reference": "b480ba2ae0699a72d43a340c20b9c00ede91ee3e",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/e8852764cf5ec8dcd2a3fa8ea03cbcf523639419",
|
||||
"reference": "e8852764cf5ec8dcd2a3fa8ea03cbcf523639419",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -11873,7 +11873,7 @@
|
||||
"description": "PHPStan - PHP Static Analysis Tool",
|
||||
"support": {
|
||||
"issues": "https://github.com/phpstan/phpstan/issues",
|
||||
"source": "https://github.com/phpstan/phpstan/tree/1.6.0"
|
||||
"source": "https://github.com/phpstan/phpstan/tree/1.6.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -11893,7 +11893,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-04-26T05:43:03+00:00"
|
||||
"time": "2022-04-26T18:09:31+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan-doctrine",
|
||||
|
||||
@@ -3,7 +3,7 @@ includes:
|
||||
- %rootDir%/../phpstan-symfony/rules.neon
|
||||
- %rootDir%/../phpstan-doctrine/extension.neon
|
||||
- %rootDir%/../phpstan-doctrine/rules.neon
|
||||
# - %rootDir%/../phpstan/conf/bleedingEdge.neon
|
||||
- %rootDir%/../phpstan/conf/bleedingEdge.neon
|
||||
|
||||
parameters:
|
||||
tmpDir: %rootDir%/../../../var/cache/phpstan
|
||||
|
||||
@@ -17,11 +17,11 @@ class Constants
|
||||
/**
|
||||
* The current release version
|
||||
*/
|
||||
public const VERSION = '1.19.5';
|
||||
public const VERSION = '1.19.6';
|
||||
/**
|
||||
* The current release: major * 10000 + minor * 100 + patch
|
||||
*/
|
||||
public const VERSION_ID = 11905;
|
||||
public const VERSION_ID = 11906;
|
||||
/**
|
||||
* The current release status, either "stable" or "dev"
|
||||
*/
|
||||
|
||||
@@ -111,7 +111,7 @@ class QuickEntryWeekType extends AbstractType
|
||||
],
|
||||
'allow_add' => true,
|
||||
'constraints' => [
|
||||
new Valid(),
|
||||
// having "new Valid()," here will trigger constraint violations on activity and project for completely empty rows
|
||||
new All(['constraints' => [new QuickEntryTimesheet()]])
|
||||
],
|
||||
]);
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
{% for activity in stats.activities %}
|
||||
<th colspan="3" class="text-center">{{ activity.name }}</th>
|
||||
{% endfor %}
|
||||
<th rowspan="2" style="{{ rowspanStyle }}">{{ dataTypeTitle|trans }}</th>
|
||||
<th rowspan="2" style="{{ rowspanStyle }}" class="text-center">{{ dataTypeTitle|trans }}</th>
|
||||
</tr>
|
||||
<tr>
|
||||
{% for activity in stats.activities %}
|
||||
|
||||
Reference in New Issue
Block a user