Skip to content

Commit

Permalink
Add AbstractInput class (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
vjik committed May 17, 2023
1 parent 017a406 commit 018592a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/AbstractInput.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

declare(strict_types=1);

namespace Yiisoft\Input\Http;

use Yiisoft\Hydrator\Validator\ValidatedInputInterface;
use Yiisoft\Hydrator\Validator\ValidatedInputTrait;

abstract class AbstractInput implements RequestInputInterface, ValidatedInputInterface
{
use ValidatedInputTrait;
}

0 comments on commit 018592a

Please sign in to comment.