Beispiel #1
0
 public static function fromJson($json)
 {
     $data = json_decode($json, true);
     if (null === $data) {
         throw new RuntimeException('Invalid Json data');
     }
     if (!isset($data['type'])) {
         throw new RuntimeException('Invalid Json : Missing `type` property in object');
     }
     $classname = sprintf($data['type']);
     if (!class_exists($classname)) {
         throw new RuntimeException(sprintf('Invalid Job class : class %s does not exists', $classname));
     }
     $obj = new $classname();
     foreach ($data as $key => $serializedValue) {
         if (in_array($key, array('name', 'type'))) {
             continue;
         }
         if ($key === 'delivery' && null !== $serializedValue) {
             $obj->setDelivery(DeliveryFactory::fromArray($serializedValue));
         } elseif ($key === 'receipts' && null !== $serializedValue) {
             $receipts = array();
             foreach ($serializedValue as $receipt) {
                 $receipts[] = ReceiptFactory::fromArray($receipt);
             }
             $obj->setReceipts($receipts);
         } else {
             $obj->{'set' . ucfirst($key)}($serializedValue);
         }
     }
     return $obj;
 }
 /**
  * @expectedException Gloubster\Exception\RuntimeException
  */
 public function testFromArrayFailsWithoutgClassname()
 {
     Factory::fromArray(array());
 }