Skip to content

Conversation

@kermorgant
Copy link
Contributor

Before and After

<?php

class AcmeBlogTest extends TestCase
{
    public function setUp()
    {
        $this->blog = new Blog();
    }
}

Becomes:

<?php

class AcmeBlogTest extends TestCase
{
    /**
     * @var Blog
     */
    private $blog;

    public function setUp()
    {
        $this->blog = new Blog();
    }
}

@kermorgant
Copy link
Contributor Author

Hi @zonuexe
This is a small thing so I merge it directly in develop.

@kermorgant kermorgant merged commit ef1a54e into develop Feb 23, 2019
@zonuexe zonuexe deleted the feature/add-missing-assignments branch February 27, 2019 14:07
@zonuexe
Copy link
Member

zonuexe commented Feb 27, 2019

@kermorgant Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants