c2ec1c97c9
A poor man's formatter since I didn't like any of the other ones I found. The original C++ source sometimes put newlines and sometimes not.
Codemods:
codemod '([;{}])([^\n])' '\1\n\2'
codemod -m '\s*<\?php\s+' '<?php\n\n'
codemod '\t' ' '
I hand-fixed all the failing tests
30 linhas
577 B
PHP
30 linhas
577 B
PHP
<?php
|
|
|
|
class A implements ArrayAccess {
|
|
public $a;
|
|
public function offsetExists($offset) {
|
|
echo "offsetExist";
|
|
return false;
|
|
}
|
|
public function offsetGet($offset) {
|
|
echo "offsetGet";
|
|
return $this->$offset.'get';
|
|
}
|
|
public function offsetSet($offset, $value) {
|
|
$this->$offset = $value.'set';
|
|
}
|
|
public function offsetUnset($offset) {
|
|
$this->$offset = 'unset';
|
|
}
|
|
}
|
|
$obj = new A();
|
|
if (!isset($obj['a'])) {
|
|
$obj['a'] = 'test';
|
|
}
|
|
if (!empty($obj['a'])) {
|
|
$obj['a'] = 'test2';
|
|
}
|
|
var_dump($obj['a']);
|
|
unset($obj['a']);
|
|
var_dump($obj['a']);
|