Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
mockery
/
mockery
/
library
/
Mockery
/
CountValidator
:
CountValidatorInterface.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Mockery\CountValidator; interface CountValidatorInterface { /** * Checks if the validator can accept an additional nth call * * @param int $n * * @return bool */ public function isEligible($n); /** * Validate the call count against this validator * * @param int $n * * @return bool */ public function validate($n); }