mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-02-10 14:08:40 +00:00
Added lock
This commit is contained in:
parent
2cf6969cfb
commit
d3152722b9
|
|
@ -122,6 +122,14 @@ abstract class RequestAbstract implements MessageInterface
|
||||||
*/
|
*/
|
||||||
protected $hash = [];
|
protected $hash = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Request lock.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
* @since 1.0.0
|
||||||
|
*/
|
||||||
|
protected $lock = false;
|
||||||
|
|
||||||
protected $header = null;
|
protected $header = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -267,14 +275,29 @@ abstract class RequestAbstract implements MessageInterface
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* Set request data.
|
||||||
|
*
|
||||||
|
* @param mixed $key Data key
|
||||||
|
* @param mixed $value Value
|
||||||
|
* @param bool $overwrite Overwrite data
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||||
*/
|
*/
|
||||||
public function setData($key, $value, $overwrite = true)
|
public function setData($key, $value, bool $overwrite = true) : bool
|
||||||
{
|
{
|
||||||
$key = mb_strtolower($key);
|
if (!$this->lock) {
|
||||||
if ($overwrite || !isset($this->data[$key])) {
|
$key = mb_strtolower($key);
|
||||||
$this->data[$key] = $value;
|
if ($overwrite || !isset($this->data[$key])) {
|
||||||
|
$this->data[$key] = $value;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -285,6 +308,19 @@ abstract class RequestAbstract implements MessageInterface
|
||||||
return $this->l11n;
|
return $this->l11n;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lock request for further manipulations.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*
|
||||||
|
* @since 1.0.0
|
||||||
|
* @author Dennis Eichhorn <d.eichhorn@oms.com>
|
||||||
|
*/
|
||||||
|
public function lock()
|
||||||
|
{
|
||||||
|
$this->lock = true;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritdoc}
|
* {@inheritdoc}
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user