50 lines
938 B
PHP
50 lines
938 B
PHP
<?php
|
|
/**
|
|
* @package Grav.Common.GPM
|
|
*
|
|
* @copyright Copyright (C) 2015 - 2018 Trilby Media, LLC. All rights reserved.
|
|
* @license MIT License; see LICENSE file for details.
|
|
*/
|
|
|
|
namespace Grav\Common\GPM\Common;
|
|
|
|
use Grav\Common\Data\Data;
|
|
|
|
class Package {
|
|
|
|
protected $data;
|
|
|
|
public function __construct(Data $package, $type = null) {
|
|
$this->data = $package;
|
|
|
|
if ($type) {
|
|
$this->data->set('package_type', $type);
|
|
}
|
|
}
|
|
|
|
public function getData() {
|
|
return $this->data;
|
|
}
|
|
|
|
public function __get($key) {
|
|
return $this->data->get($key);
|
|
}
|
|
|
|
public function __isset($key) {
|
|
return isset($this->data->$key);
|
|
}
|
|
|
|
public function __toString() {
|
|
return $this->toJson();
|
|
}
|
|
|
|
public function toJson() {
|
|
return $this->data->toJson();
|
|
}
|
|
|
|
public function toArray() {
|
|
return $this->data->toArray();
|
|
}
|
|
|
|
}
|