for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace andmemasin\myabstract\stubs;
class CountableStub implements \Countable
{
private $count;
public function __construct($count)
$this->count = $count;
}
public function count()
return $this->count;