Lines Matching defs:info
21 protected $info;
26 * @param array $info Revision Information structure with entries:
40 public function __construct($info = null)
42 if (!is_array($info) || !isset($info['id'])) {
43 $info = [
48 $this->info = $info;
77 if (isset($value) && !array_key_exists($key, $this->info)) {
79 $this->info[$key] = $value;
81 if (array_key_exists($key, $this->info)) {
83 return $this->info[$key];
91 * @param array $info
94 public function append(array $info)
96 foreach ($info as $key => $value) {
225 // revision info may have timestamp key when external edits occurred