Skip to content

Commit

Permalink
Resolve yiisoft#602 conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
rossaddison committed Apr 10, 2024
1 parent c672355 commit 793d8c5
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion blog/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"yiisoft/html": "^3.0",
"yiisoft/http": "^1.2",
"yiisoft/injector": "^1.0",
"yiisoft/input-http": "^1.0.0",
"yiisoft/input-http": "^1.0",
"yiisoft/log": "^2.0",
"yiisoft/log-target-file": "^3.0",
"yiisoft/mailer": "^5.0",
Expand Down
4 changes: 2 additions & 2 deletions blog/config/web/di/middleware-dispatcher.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

use Yiisoft\Definitions\Reference;
use Yiisoft\Input\Http\HydratorAttributeParametersResolver;
//use Yiisoft\Input\Http\Request\Catcher\RequestCatcherParametersResolver;
use Yiisoft\Input\Http\Request\Catcher\RequestCatcherParametersResolver;
use Yiisoft\Input\Http\RequestInputParametersResolver;
use Yiisoft\Middleware\Dispatcher\CompositeParametersResolver;
use Yiisoft\Middleware\Dispatcher\ParametersResolverInterface;
Expand All @@ -17,7 +17,7 @@
ParametersResolverInterface::class => [
'class' => CompositeParametersResolver::class,
'__construct()' => [
//Reference::to(RequestCatcherParametersResolver::class),
Reference::to(RequestCatcherParametersResolver::class),
Reference::to(HydratorAttributeParametersResolver::class),
Reference::to(RequestInputParametersResolver::class),
],
Expand Down
4 changes: 2 additions & 2 deletions blog/src/Blog/Post/PostRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
use DateTimeImmutable;
use DateTimeInterface;
use Throwable;
use Yiisoft\Data\Reader\DataReaderInterface;
use Yiisoft\Data\Reader\Sort;
use Yiisoft\Data\Cycle\Reader\EntityReader;
use Yiisoft\Data\Cycle\Writer\EntityWriter;
use Yiisoft\Data\Reader\DataReaderInterface;
use Yiisoft\Data\Reader\Sort;

final class PostRepository extends Select\Repository
{
Expand Down
2 changes: 1 addition & 1 deletion blog/src/Command/Fixture/AddCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
use Throwable;
use Yiisoft\Data\Cycle\Writer\EntityWriter;
use Yiisoft\Yii\Console\ExitCode;
use Yiisoft\Yii\Cycle\Command\CycleDependencyProxy;
use Yiisoft\Data\Cycle\Writer\EntityWriter;

final class AddCommand extends Command
{
Expand Down
4 changes: 2 additions & 2 deletions blog/src/User/UserRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

use Cycle\ORM\Select;
use Throwable;
use Yiisoft\Data\Cycle\Reader\EntityReader;
use Yiisoft\Data\Cycle\Writer\EntityWriter;
use Yiisoft\Data\Reader\DataReaderInterface;
use Yiisoft\Data\Reader\Sort;
use Yiisoft\Yii\Cycle\Data\Reader\EntityReader;
use Yiisoft\Data\Cycle\Writer\EntityWriter;

final class UserRepository extends Select\Repository
{
Expand Down

0 comments on commit 793d8c5

Please sign in to comment.