Throw UnknownPropertyException
when setting unknown property (#275)
#797
Annotations
3 warnings
Run infection.:
src/BaseActiveRecordTrait.php#L207
Escaped Mutant for Mutator "ConcatOperandRemoval":
--- Original
+++ New
@@ @@
return;
}
if (method_exists($this, 'get' . ucfirst($name))) {
- throw new InvalidCallException('Setting read-only property: ' . static::class . '::' . $name);
+ throw new InvalidCallException('Setting read-only property: ' . static::class . '::');
}
throw new UnknownPropertyException('Setting unknown property: ' . static::class . '::' . $name);
}
|
Run infection.:
src/BaseActiveRecordTrait.php#L301
Escaped Mutant for Mutator "LogicalOr":
--- Original
+++ New
@@ @@
*/
public function hasProperty(string $name, bool $checkVars = true) : bool
{
- return $this->canGetProperty($name, $checkVars) || $this->canSetProperty($name, false);
+ return $this->canGetProperty($name, $checkVars) && $this->canSetProperty($name, false);
}
public function canGetProperty(string $name, bool $checkVars = true) : bool
{
|
Run infection.:
src/BaseActiveRecordTrait.php#L302
Escaped Mutant for Mutator "FalseValue":
--- Original
+++ New
@@ @@
*/
public function hasProperty(string $name, bool $checkVars = true) : bool
{
- return $this->canGetProperty($name, $checkVars) || $this->canSetProperty($name, false);
+ return $this->canGetProperty($name, $checkVars) || $this->canSetProperty($name, true);
}
public function canGetProperty(string $name, bool $checkVars = true) : bool
{
|
The logs for this run have expired and are no longer available.
Loading