Initial SQLite development (#1)
Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
17
src/Mapper/CountMapper.php
Normal file
17
src/Mapper/CountMapper.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
namespace BitBadger\PDODocument\Mapper;
|
||||
|
||||
/**
|
||||
* A mapper that returns the integer value of the first item in the results
|
||||
*/
|
||||
class CountMapper implements Mapper
|
||||
{
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function map(array $result): int
|
||||
{
|
||||
return (int) $result[0];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user