1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 09:02:41 +00:00
Arsse/lib/Db/ResultEmpty.php

32 lines
635 B
PHP
Raw Normal View History

<?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;
class ResultEmpty extends AbstractResult {
protected $changes = 0;
protected $id = 0;
2020-03-01 20:16:50 +00:00
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;
}
}