concise icon indicating copy to clipboard operation
concise copied to clipboard

Use magic getters for building mocks

Open elliotchance opened this issue 10 years ago • 0 comments

Any property should try and call a method with the same name:

$this->mock('CustomerEntity')->disableConstuctor()->done();

Will work the same as:

$this->mock('CustomerEntity')->disableConstuctor->done;

elliotchance avatar Sep 02 '14 00:09 elliotchance