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 e8a5d5b

Browse filesBrowse files
[ErrorHandler] improve parsing of phpdoc by DebugClassLoader
1 parent 1d19615 commit e8a5d5b
Copy full SHA for e8a5d5b

File tree

19 files changed

+2090
-230
lines changed
Filter options

19 files changed

+2090
-230
lines changed

‎.github/patch-types.php

Copy file name to clipboardExpand all lines: .github/patch-types.php
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
switch (true) {
1616
case false !== strpos($file = realpath($file), '/vendor/'):
1717
case false !== strpos($file, '/src/Symfony/Bridge/PhpUnit/'):
18+
case false !== strpos($file, '/Attribute/'):
1819
case false !== strpos($file, '/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Validation/Article.php'):
1920
case false !== strpos($file, '/src/Symfony/Component/Cache/Tests/Fixtures/DriverWrapper.php'):
2021
case false !== strpos($file, '/src/Symfony/Component/Config/Tests/Fixtures/BadFileName.php'):

‎src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/SecurityExtensionTest.php

Copy file name to clipboardExpand all lines: src/Symfony/Bundle/SecurityBundle/Tests/DependencyInjection/SecurityExtensionTest.php
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -856,6 +856,10 @@ public function onAuthenticationSuccess(Request $request, TokenInterface $token,
856856
public function onAuthenticationFailure(Request $request, AuthenticationException $exception): ?Response
857857
{
858858
}
859+
860+
public function createToken(Passport $passport, string $firewallName): TokenInterface
861+
{
862+
}
859863
}
860864

861865
class NullAuthenticator implements GuardAuthenticatorInterface

‎src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ class ArrayCache extends CacheProvider
88
{
99
private $data = [];
1010

11+
/**
12+
* @return mixed
13+
*/
1114
protected function doFetch($id)
1215
{
1316
return $this->doContains($id) ? $this->data[$id][0] : false;

‎src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/Loader/YamlFileLoader.php
+1-3Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -803,9 +803,7 @@ private function validate($content, string $file): ?array
803803
}
804804

805805
/**
806-
* Resolves services.
807-
*
808-
* @return array|string|Reference|ArgumentInterface
806+
* @return mixed
809807
*/
810808
private function resolveServices($value, string $file, bool $isParameter = false)
811809
{

‎src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/ProjectWithXsdExtension.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/DependencyInjection/Tests/Fixtures/includes/ProjectWithXsdExtension.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
class ProjectWithXsdExtension extends ProjectExtension
44
{
5-
public function getXsdValidationBasePath()
5+
public function getXsdValidationBasePath(): string
66
{
77
return __DIR__.'/schema';
88
}

‎src/Symfony/Component/ErrorHandler/DebugClassLoader.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/ErrorHandler/DebugClassLoader.php
+287-185Lines changed: 287 additions & 185 deletions
Large diffs are not rendered by default.

0 commit comments

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