ciaranmcnulty/phpspec-typehintedmethods
最新稳定版本:4.0.0
Composer 安装命令:
composer require ciaranmcnulty/phpspec-typehintedmethods
包简介
Extension for phpspec to enhance generated methods
README 文档
README
#PhpSpec Typehinted Methods Extension
##Usage
PhpSpec by default will generate nonexistent methods, but will not add typehints. This extension enables that behaviour.
Write a phpspec example that uses a non-existent method:
function it_does_foo() { $this->foo(new \ArrayObject()); }
And run the spec. After accepting the prompt, the following will appear in your class under specification:
public function foo(\ArrayObject $arrayObject) { // TODO: write logic here }
##Installation
Add this extension as a composer dependency:
composer require --dev ciaranmcnulty/phpspec-typehintedmethods
Add the following to your phpspec.yml:
extensions: Cjm\PhpSpec\Extension\TypeHintedMethodsExtension: ~
##Who should use this?
There are pros and cons to this extension. It's written to satisfy a particular itch that I (Ciaran) had, because I tend to write examples like this:
function it_does_something_with_a_token(TokenInterface $token) { $token->getId()->willReturn(1234); $this->foo($token)->shouldReturn(1234); }
In this case, because I've written my example thinking about the types I want foo to take, it's efficient for me to get a typehinted method.
However, some people write specs much more in an 'example' frame of mind, so might write something like this:
function it_does_something_with_a_token(ArrayToken $token) { $token->getId()->willReturn(1234); $this->foo($token)->shouldReturn(1234); }
In this case the author is using an ArrayToken to illustrate the example, but would prefer the typehint to be TokenInterface. For this author, the typehinting will be irritating because they will have to keep editing the typehint.
This is the reason the functionality is not in core - we do not want to encourage authors to typehint against implementations (discussion at phpspec/phpspec#230)
##Todo
Future ideas:
-
Analysis/generation of
usestatements in target file to allow shorter typehints -
Meta-analysis of examples to work out which parent class(es) could be used in typehint (?)
统计信息
- 总下载量: 89.17k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 30
- 点击次数: 0
- 依赖项目数: 34
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2014-02-05