for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright © Eduard Sukharev
*
* For a full license, see the LICENSE file.
*/
namespace Ups\Entity;
/**
* @author Eduard Sukharev <[email protected]>
class Prepaid
{
* @var BillShipper
private $billShipper;
public function __construct($attributes = null)
$this->setBillShipper(new BillShipper($attributes));
}
* @return BillShipper
public function getBillShipper()
return $this->billShipper;
* @param BillShipper $billShipper
public function setBillShipper($billShipper)
$this->billShipper = $billShipper;