初始化代码
This commit is contained in:
3
vendor/swoole/ide-helper/output/swoole_serialize/aliases.php
vendored
Normal file
3
vendor/swoole/ide-helper/output/swoole_serialize/aliases.php
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
class_alias(Swoole\Serialize::class, swoole_serialize::class);
|
||||
5
vendor/swoole/ide-helper/output/swoole_serialize/constants.php
vendored
Normal file
5
vendor/swoole/ide-helper/output/swoole_serialize/constants.php
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
<?php
|
||||
|
||||
define('SWOOLE_FAST_PACK', 1);
|
||||
define('UNSERIALIZE_OBJECT_TO_ARRAY', 1);
|
||||
define('UNSERIALIZE_OBJECT_TO_STDCLASS', 2);
|
||||
23
vendor/swoole/ide-helper/output/swoole_serialize/namespace/Serialize.php
vendored
Normal file
23
vendor/swoole/ide-helper/output/swoole_serialize/namespace/Serialize.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Swoole;
|
||||
|
||||
class Serialize
|
||||
{
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public static function pack($data, $flag = null)
|
||||
{
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public static function unpack($string, $flag = null)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user