for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tequilarapido\TrackIt\Store;
use Redis;
class RedisStore implements Store
{
public function get($key)
return Redis::connection()->get($key);
connection()
Redis
connect()
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.
}
public function set($key, $value)
Redis::connection()->set($key, $value);
public function increment($key, $increment = 1)
Redis::connection()->incrby($key, $increment);
public function exists($key)
return (bool) Redis::connection()->exists($key);
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.