mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
Fix incorrect use of assignment in where equality was intended - class tests.
This commit is contained in:
parent
70bf5468de
commit
f35dfc697b
@ -7,13 +7,13 @@ class Test {
|
||||
private $real_a = 2;
|
||||
|
||||
function __set($property, $value) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
$this->real_a = $value;
|
||||
}
|
||||
}
|
||||
|
||||
function __get($property) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
return $this->real_a;
|
||||
}
|
||||
}
|
||||
|
@ -7,13 +7,13 @@ class Test {
|
||||
private $real_a = 2;
|
||||
|
||||
function __set($property, $value) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
$this->real_a = $value;
|
||||
}
|
||||
}
|
||||
|
||||
function __get($property) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
return $this->real_a;
|
||||
}
|
||||
}
|
||||
|
@ -7,13 +7,13 @@ class Test {
|
||||
private $real_a = 2;
|
||||
|
||||
function __set($property, $value) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
$this->real_a = $value;
|
||||
}
|
||||
}
|
||||
|
||||
function __get($property) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
return $this->real_a;
|
||||
}
|
||||
}
|
||||
|
@ -7,13 +7,13 @@ class Test {
|
||||
private $real_a = 2;
|
||||
|
||||
function __set($property, $value) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
$this->real_a = $value;
|
||||
}
|
||||
}
|
||||
|
||||
function __get($property) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
return $this->real_a;
|
||||
}
|
||||
}
|
||||
|
@ -7,13 +7,13 @@ class Test {
|
||||
private $real_a = 2;
|
||||
|
||||
function __set($property, $value) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
$this->real_a = $value;
|
||||
}
|
||||
}
|
||||
|
||||
function __get($property) {
|
||||
if ($property = "a") {
|
||||
if ($property == "a") {
|
||||
return $this->real_a;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user