for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* DataStructures for PHP
*
* @link https://github.com/SiroDiaz/DataStructures
* @copyright Copyright (c) 2017 Siro Díaz Palazón
* @license https://github.com/SiroDiaz/DataStructures/blob/master/README.md (MIT License)
*/
namespace DataStructures\Lists\Traits;
* CountTrait
* CountTrait is a trait that implements the Countable interface methods and
* size method to avoid repeating code in the List hierarchy classes.
* @author Siro Diaz Palazon <[email protected]>
trait CountTrait {
}