We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b07eca5 commit c35f2c8Copy full SHA for c35f2c8
UPGRADE-2.7.md
@@ -559,6 +559,31 @@ Validator
559
(NullValidator, TrueValidator, FalseValidator) are marked as deprecated
560
in favor of their `Is`-prefixed equivalent.
561
562
+Console
563
+-------
564
+
565
+ * The `Symfony\Component\Console\Input\InputDefinition::getSynopsis()` method
566
+ now has an optional argument (it previously had no arguments). If you override
567
+ this method, you'll need to add this argument so that your signature matches:
568
569
+ Before:
570
571
+ ```php
572
+ public function getSynopsis()
573
+ {
574
+ // ...
575
+ }
576
+ ```
577
578
+ After:
579
580
581
+ public function getSynopsis($short = false)
582
583
584
585
586
587
TwigBundle
588
----------
589
0 commit comments