Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Oct 5, 2021
1 parent b9a308a commit 9e0920f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion prototypes/apc.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
defined('APC_BIN_VERIFY_MD5') || define('APC_BIN_VERIFY_MD5', 1 << 0);

// See: https://github.com/php/pecl-caching-apc/blob/master/apc_iterator.h
defined('APC_ITER_ALL') || define('APC_ITER_ALL', 0xffffffff);
defined('APC_ITER_ALL') || define('APC_ITER_ALL', 0xFFFFFFFF);
defined('APC_ITER_ATIME') || define('APC_ITER_ATIME', 1 << 11);
defined('APC_ITER_CTIME') || define('APC_ITER_CTIME', 1 << 9);
defined('APC_ITER_DEVICE') || define('APC_ITER_DEVICE', 1 << 3);
Expand Down Expand Up @@ -62,6 +62,7 @@ public function key()
{
}

#[ReturnTypeWillChange]
public function next()
{
}
Expand Down

0 comments on commit 9e0920f

Please sign in to comment.