Apply fixes from StyleCI
This commit is contained in:
parent
eb3ee22e3f
commit
3c4412cf1e
8
a.php
8
a.php
@ -1,12 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
require 'vendor/autoload.php';
|
require 'vendor/autoload.php';
|
||||||
class a extends Volatile
|
class a extends Volatile
|
||||||
{
|
{
|
||||||
// public $a = [];
|
// public $a = [];
|
||||||
public function __construct() {
|
public function __construct()
|
||||||
|
{
|
||||||
$this->a = 'le';
|
$this->a = 'le';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$a = new a;
|
$a = new a();
|
||||||
|
|
||||||
var_dump($a);
|
var_dump($a);
|
||||||
|
@ -31,7 +31,7 @@ if (!extension_loaded('pthreads')) {
|
|||||||
|
|
||||||
public function count()
|
public function count()
|
||||||
{
|
{
|
||||||
return count((array)$this);
|
return count((array) $this);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getIterator()
|
public function getIterator()
|
||||||
@ -85,7 +85,6 @@ if (!extension_loaded('pthreads')) {
|
|||||||
|
|
||||||
public function shift()
|
public function shift()
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function chunk($size)
|
public function chunk($size)
|
||||||
|
@ -6,7 +6,7 @@ if (!extension_loaded('pthreads')) {
|
|||||||
public function __set($offset, $value)
|
public function __set($offset, $value)
|
||||||
{
|
{
|
||||||
if ($offset === null) {
|
if ($offset === null) {
|
||||||
$offset = count((array)$this);
|
$offset = count((array) $this);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (is_array($value)) {
|
if (is_array($value)) {
|
||||||
|
@ -17,6 +17,7 @@ class Button extends \Volatile implements \JsonSerializable
|
|||||||
use \danog\Serializable;
|
use \danog\Serializable;
|
||||||
private $info = [];
|
private $info = [];
|
||||||
private $data = [];
|
private $data = [];
|
||||||
|
|
||||||
public function ___construct($API, $message, $button)
|
public function ___construct($API, $message, $button)
|
||||||
{
|
{
|
||||||
$this->data = $button;
|
$this->data = $button;
|
||||||
|
@ -162,6 +162,7 @@ class Connection extends \Volatile
|
|||||||
if (count($keys) !== count(array_unique($keys))) {
|
if (count($keys) !== count(array_unique($keys))) {
|
||||||
throw new Bug74586Exception();
|
throw new Bug74586Exception();
|
||||||
}
|
}
|
||||||
|
|
||||||
return $keys;
|
return $keys;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,7 +152,9 @@ class MTProto extends \Volatile
|
|||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
if (isset($this->data)) {
|
if (isset($this->data)) {
|
||||||
foreach ($this->data as $k => $v) { $this->{$k} = $v; }
|
foreach ($this->data as $k => $v) {
|
||||||
|
$this->{$k} = $v;
|
||||||
|
}
|
||||||
unset($this->data);
|
unset($this->data);
|
||||||
}
|
}
|
||||||
$this->getting_state = false;
|
$this->getting_state = false;
|
||||||
|
Loading…
Reference in New Issue
Block a user