File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212/**
1313 * Class to manage the comments of a translation.
14+ *
15+ * @phpstan-consistent-constructor
1416 */
1517class Comments implements JsonSerializable, Countable, IteratorAggregate
1618{
Original file line number Diff line number Diff line change 1111
1212/**
1313 * Class to manage the flags of a translation.
14+ *
15+ * @phpstan-consistent-constructor
1416 */
1517class Flags implements JsonSerializable, Countable, IteratorAggregate
1618{
Original file line number Diff line number Diff line change 1212
1313/**
1414 * Class to manage the headers of translations.
15+ *
16+ * @phpstan-consistent-constructor
1517 */
1618class Headers implements JsonSerializable, Countable, IteratorAggregate
1719{
Original file line number Diff line number Diff line change 1111
1212/**
1313 * Class to manage the references of a translation.
14+ *
15+ * @phpstan-consistent-constructor
1416 */
1517class References implements JsonSerializable, Countable, IteratorAggregate
1618{
@@ -24,6 +26,10 @@ public static function __set_state(array $state): References
2426 return $ references ;
2527 }
2628
29+ public function __construct ()
30+ {
31+ }
32+
2733 public function __debugInfo ()
2834 {
2935 return $ this ->toArray ();
Original file line number Diff line number Diff line change 55
66/**
77 * Class to manage an individual translation.
8+ *
9+ * @phpstan-consistent-constructor
810 */
911class Translation
1012{
Original file line number Diff line number Diff line change 1212
1313/**
1414 * Class to manage a collection of translations under the same domain.
15+ *
16+ * @phpstan-consistent-constructor
1517 */
1618class Translations implements Countable, IteratorAggregate
1719{
You can’t perform that action at this time.
0 commit comments