Skip to content

Commit

Permalink
Hack at some dependency files that area failing lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
danmarsden committed Nov 6, 2019
1 parent b57cc41 commit 9b97a29
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Symfony\Component\DependencyInjection\Argument\RewindableGenerator;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Container;
use Symfony\Component\DependencyInjection\Exception\InvalidArgumentException;
use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

class NullableController
{
public function action(?string $foo, ?\stdClass $bar, ?string $baz = 'value', $mandatory)
public function action(string $foo, \stdClass $bar, string $baz = 'value', $mandatory)
{
}
}

0 comments on commit 9b97a29

Please sign in to comment.