@@ -1389,13 +1389,13 @@ final public static function assertObjectNotHasProperty(string $propertyName, ob
13891389 * Used on objects, it asserts that two variables reference
13901390 * the same object.
13911391 *
1392- * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1393- * @throws ExpectationFailedException
1394- *
13951392 * @psalm-template ExpectedType
13961393 *
13971394 * @psalm-param ExpectedType $expected
13981395 *
1396+ * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1397+ * @throws ExpectationFailedException
1398+ *
13991399 * @psalm-assert =ExpectedType $actual
14001400 */
14011401 public static function assertSame ($ expected , $ actual , string $ message = '' ): void
@@ -1433,14 +1433,14 @@ public static function assertNotSame($expected, $actual, string $message = ''):
14331433 /**
14341434 * Asserts that a variable is of a given type.
14351435 *
1436- * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1437- * @throws Exception
1438- * @throws ExpectationFailedException
1439- *
14401436 * @psalm-template ExpectedType of object
14411437 *
14421438 * @psalm-param class-string<ExpectedType> $expected
14431439 *
1440+ * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1441+ * @throws Exception
1442+ * @throws ExpectationFailedException
1443+ *
14441444 * @psalm-assert =ExpectedType $actual
14451445 */
14461446 public static function assertInstanceOf (string $ expected , $ actual , string $ message = '' ): void
@@ -1459,14 +1459,14 @@ public static function assertInstanceOf(string $expected, $actual, string $messa
14591459 /**
14601460 * Asserts that a variable is not of a given type.
14611461 *
1462- * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1463- * @throws Exception
1464- * @throws ExpectationFailedException
1465- *
14661462 * @psalm-template ExpectedType of object
14671463 *
14681464 * @psalm-param class-string<ExpectedType> $expected
14691465 *
1466+ * @throws \SebastianBergmann\RecursionContext\InvalidArgumentException
1467+ * @throws Exception
1468+ * @throws ExpectationFailedException
1469+ *
14701470 * @psalm-assert !ExpectedType $actual
14711471 */
14721472 public static function assertNotInstanceOf (string $ expected , $ actual , string $ message = '' ): void
0 commit comments