for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
class A
{
/** @var mixed */
private mixed $value;
private mixed $otherValue;
/**
* A constructor.
*
* @param $value
* @param $otherValue
*/
public function __construct($value, $otherValue)
$this->value = $value;
$this->otherValue = $otherValue;
}
* @return mixed
public function getValue(): mixed
return $this->value;
* @param mixed $value
public function setValue(mixed $value): void
public function getOtherValue(): mixed
return $this->otherValue;
* @param mixed $otherValue
public function setOtherValue(mixed $otherValue): void