mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
c4a41255b0
No testing has been performed yet, but changes are extensive enough to warrant a commit. Of particular note: - SQL states are enumerated in a separate trait to reduce duplication - PDOStatement is now an abstract class to avoid duplication of engine-specific error handling - Error handling has been cleaned up somewhat
33 lines
673 B
PHP
33 lines
673 B
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Db;
|
|
|
|
use JKingWeb\Arsse\Db\Exception;
|
|
|
|
class ResultEmpty extends AbstractResult {
|
|
protected $changes = 0;
|
|
protected $id = 0;
|
|
|
|
public function __construct(int $changes = 0, int $id = 0) {
|
|
$this->changes = $changes;
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function changes(): int {
|
|
return $this->changes;
|
|
}
|
|
|
|
public function lastId(): int {
|
|
return $this->id;
|
|
}
|
|
|
|
// PHP iterator methods
|
|
|
|
public function valid() {
|
|
return false;
|
|
}
|
|
}
|