for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the Tarantool Client package.
*
* (c) Eugene Leonovich <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tarantool\Client;
final class SqlUpdateResult implements \Countable
{
private $info;
public function __construct(array $info)
$this->info = $info;
}
public function count() : int
return $this->info[0];
public function getAutoincrementIds() : ?array
return $this->info[1] ?? null;