generated from yiisoft/package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3496ff7
commit 15addeb
Showing
6 changed files
with
197 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Support; | ||
|
||
final class CustomerDTO | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Support; | ||
|
||
use Yiisoft\Data\Db\AbstractQueryDataReader; | ||
|
||
final class CustomerDataReader extends AbstractQueryDataReader | ||
{ | ||
|
||
/** | ||
* @inheritDoc | ||
*/ | ||
protected function createItem(object|array $row): array|object | ||
{ | ||
return new CustomerDTO(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Yiisoft\Data\Db\Tests\Support; | ||
|
||
use Yiisoft\Db\Query\Query; | ||
use function count; | ||
|
||
final class CustomerQuery extends Query | ||
{ | ||
private array $data = [ | ||
[ | ||
'id' => 1, | ||
'email' => '[email protected]', | ||
'user1' => 'address1', | ||
], | ||
[ | ||
'id' => 2, | ||
'email' => '[email protected]', | ||
'user1' => 'address2', | ||
], | ||
[ | ||
'id' => 3, | ||
'email' => '[email protected]', | ||
'user1' => 'address3', | ||
] | ||
]; | ||
|
||
public function all(): array | ||
{ | ||
return $this->data; | ||
} | ||
|
||
public function one(): ?array | ||
{ | ||
return $this->data[0]; | ||
} | ||
|
||
public function count(string $q = '*'): int|string | ||
{ | ||
return count($this->data); | ||
} | ||
} |