for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Knik\Binn;
use Knik\Binn\Contracts\Container;
class BinnMap extends Binn implements Container
{
protected $binnType = self::BINN_MAP;
private function addVal($key, $value)
addVal()
This check looks for private methods that have been defined, but are not used inside the class.
$this->items[$key] = $value;
}
This check looks for private methods that have been defined, but are not used inside the class.