Skip to content

Commit

Permalink
updates for Swoole 4.4.23
Browse files Browse the repository at this point in the history
  • Loading branch information
deminy committed Dec 27, 2020
1 parent 6756bad commit 8990422
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions output/swoole/constants.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php

define('SWOOLE_VERSION', '4.4.22');
define('SWOOLE_VERSION_ID', 40422);
define('SWOOLE_VERSION', '4.4.23');
define('SWOOLE_VERSION_ID', 40423);
define('SWOOLE_MAJOR_VERSION', 4);
define('SWOOLE_MINOR_VERSION', 4);
define('SWOOLE_RELEASE_VERSION', 22);
define('SWOOLE_RELEASE_VERSION', 23);
define('SWOOLE_EXTRA_VERSION', '');
define('SWOOLE_DEBUG', '');
define('SWOOLE_HAVE_COMPRESSION', '1');
Expand Down
6 changes: 3 additions & 3 deletions output/swoole/namespace/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

namespace Swoole;

class Table implements \Iterator, \Traversable, \ArrayAccess
class Table implements \Iterator, \ArrayAccess
{

public const TYPE_INT = 1;

public const TYPE_STRING = 7;
public const TYPE_STRING = 3;

public const TYPE_FLOAT = 6;
public const TYPE_FLOAT = 2;

public function __construct($table_size, $conflict_proportion = null)
{
Expand Down

0 comments on commit 8990422

Please sign in to comment.