Add public keyword to methods

[MAILPOET-2413]
This commit is contained in:
Amine Ben hammou
2019-12-26 12:56:49 +01:00
committed by wxa
parent ec409042d5
commit 43df66d162
823 changed files with 4440 additions and 4440 deletions

View File

@ -7,7 +7,7 @@ use MailPoetVendor\Idiorm\ORM;
class SubscribersListingsHandlerFactoryTest extends \MailPoetTest {
function testItReturnsNullWithUnknownSegment() {
public function testItReturnsNullWithUnknownSegment() {
$segment = DynamicSegment::create();
$segment->id = 1;
$segment->name = 'name';
@ -17,7 +17,7 @@ class SubscribersListingsHandlerFactoryTest extends \MailPoetTest {
expect($result)->null();
}
function testItReturnsDataForDynamicSegment() {
public function testItReturnsDataForDynamicSegment() {
$segment = DynamicSegment::createOrUpdate([
'name' => 'name',
'description' => 'desc',
@ -28,11 +28,11 @@ class SubscribersListingsHandlerFactoryTest extends \MailPoetTest {
expect($result)->notNull();
}
function _before() {
public function _before() {
$this->cleanData();
}
function _after() {
public function _after() {
$this->cleanData();
}