for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Knp\FriendlyContexts\Faker\Provider;
class Address extends Base
{
public function address1()
return $this->parent->streetAddress();
}
public function postalcode()
return $this->parent->postcode();
public function zipcode()
public function supportsParent($parent)
return $parent instanceOf \Faker\Provider\Address;