Skip to content

Commit a1e7677

Browse files
committed
Use RefMany, strict checks relaxed in upstream
1 parent b08661f commit a1e7677

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
"php": ">=7.3.0",
4343
"ext-intl": "*",
4444
"atk4/dsql": "dev-develop",
45-
"mahalux/atk4-hintable": "~1.2.0"
45+
"mahalux/atk4-hintable": "~1.2.1"
4646
},
4747
"require-release": {
4848
"php": ">=7.3.0",
4949
"ext-intl": "*",
5050
"atk4/dsql": "~2.3.0",
51-
"mahalux/atk4-hintable": "~1.2.0"
51+
"mahalux/atk4-hintable": "~1.2.1"
5252
},
5353
"require-dev": {
5454
"friendsofphp/php-cs-fixer": "^2.17",

tests/ContainsMany/Invoice.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
*
1212
* @property string $ref_no @Atk4\Field()
1313
* @property float $amount @Atk4\Field()
14-
* @property Line $lines @Atk4\RefOne()
14+
* @property Line $lines @Atk4\RefMany()
1515
* @property string $total_gross @Atk4\Field()
1616
* @property float $discounts_total_sum @Atk4\Field()
1717
*/

tests/ContainsMany/Line.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @property float $qty @Atk4\Field()
1515
* @property \DateTime $add_date @Atk4\Field()
1616
* @property string $total_gross @Atk4\Field()
17-
* @property Discount $discounts @Atk4\RefOne()
17+
* @property Discount $discounts @Atk4\RefMany()
1818
* @property float $discounts_percent @Atk4\Field()
1919
*/
2020
class Line extends Model

0 commit comments

Comments
 (0)