Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Devlamynck committed Feb 29, 2024
1 parent d80a2b3 commit b4fef95
Show file tree
Hide file tree
Showing 15 changed files with 3,699 additions and 4,114 deletions.
2 changes: 1 addition & 1 deletion Accessor/ForcePropertyAccessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function setValue(&$objectOrArray, $propertyPath, $value): void
*
* @return mixed|null
*/
public function getValue($objectOrArray, $propertyPath)
public function getValue($objectOrArray, $propertyPath): mixed
{
try {
return $this->innerPropertyAccessor->getValue($objectOrArray, $propertyPath);
Expand Down
2 changes: 1 addition & 1 deletion Stubs/Symfony/ContainerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public function set($id, $service)
*
* @return mixed
*/
public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE)
public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE): ?object
{
return $this->services[$id] ?? null;
}
Expand Down
Loading

0 comments on commit b4fef95

Please sign in to comment.