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