Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 9fda6d3

Browse filesBrowse files
committed
feature #26702 Mark ExceptionInterfaces throwable (ostrolucky)
This PR was merged into the 4.1-dev branch. Discussion ---------- Mark ExceptionInterfaces throwable | Q | A | ------------- | --- | Branch? | master | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - This interface is meant to be catched, but currently it doesn't guarantee class extending it is an instance of Throwable or Exception. Commits ------- b2d8792 Mark ExceptionInterfaces throwable
2 parents ca53d3e + b2d8792 commit 9fda6d3
Copy full SHA for 9fda6d3

File tree

20 files changed

+20
-20
lines changed
Filter options

20 files changed

+20
-20
lines changed

‎src/Symfony/Component/Asset/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Asset/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Fabien Potencier <fabien@symfony.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Console/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Console/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Jérôme Tamarelle <jerome@tamarelle.net>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/CssSelector/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919
*
2020
* @author Jean-François Simon <jeanfrancois.simon@sensiolabs.com>
2121
*/
22-
interface ExceptionInterface
22+
interface ExceptionInterface extends \Throwable
2323
{
2424
}

‎src/Symfony/Component/Dotenv/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Dotenv/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Fabien Potencier <fabien@symfony.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Filesystem/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Filesystem/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Romain Neutron <imprec@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Form/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Form/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Intl/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Ldap/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Ldap/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Charles Sarrazin <charles@sarraz.in>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Lock/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Lock/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Jérémy Derussé <jeremy@derusse.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Messenger/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Messenger/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Samuel Roze <samuel.roze@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/OptionsResolver/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/OptionsResolver/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Process/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Process/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/PropertyAccess/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/PropertyAccess/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Routing/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Routing/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Alexandre Salomé <alexandre.salome@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Security/Core/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Security/Core/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Serializer/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Serializer/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Translation/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Translation/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Fabien Potencier <fabien@symfony.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Validator/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Validator/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Bernhard Schussek <bschussek@gmail.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

‎src/Symfony/Component/Workflow/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Workflow/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,6 @@
1515
* @author Fabien Potencier <fabien@symfony.com>
1616
* @author Grégoire Pineau <lyrixx@lyrixx.info>
1717
*/
18-
interface ExceptionInterface
18+
interface ExceptionInterface extends \Throwable
1919
{
2020
}

‎src/Symfony/Component/Yaml/Exception/ExceptionInterface.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Yaml/Exception/ExceptionInterface.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
*
1717
* @author Fabien Potencier <fabien@symfony.com>
1818
*/
19-
interface ExceptionInterface
19+
interface ExceptionInterface extends \Throwable
2020
{
2121
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.