Pierrick Charron
Pierrick Charron
The `source/CAS.php` is not autoloaded. We used to `require 'CAS.php';` but we get this : > Including CAS.php is deprecated. Install phpCAS using composer instead.
We recently migrated from icon-font-generator to your tool and it's pretty nice. Only issue we had is that our hbs template is generating a `less` file format, but there is...
## Meta: **CircleCI CLI Version:** 0.1.29658+dd6a5b1 **Operating System:** Linux debian 12.2 **CircleCI CLI Diagnostic:** ``` --- CircleCI CLI Diagnostics --- Debugger mode: false Config found: /home/pierrick/.circleci/cli.yml API host: https://circleci.com API...
Hi :-) Hope you're doing great. I was wondering if you were still maintaining this project and if you think you will have time at some point to update the...
- **Strict Equals Matchers by Default**: Phake now uses strict equality (`===`) for argument matchers. - To revert to the previous behavior globally, call: ```php Phake::setStrictDefaultMatchers(false); ``` - For case-by-case...
# Proposed syntax ## Get hook ```php // Regular syntax Phake::when($mock)->property->get()->thenReturn('Foobar'); // Shorthand syntax Phake::when($mock)->property->thenReturn('Foobar'); ``` ## Set hook ```php Phake::when($mock)->property->set("toto")->thenCallparent(); ``` # Todo - [ ] Only enable the...