The property PackageID does not seem to exist. Did you mean packageID?
An attempt at access to an undefined property has been detected. This may either be a typographical error
or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods
to allow access. See the php core documentation on Overloading.
The property PackageID does not seem to exist. Did you mean packageID?
An attempt at access to an undefined property has been detected. This may either be a typographical error
or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods
to allow access. See the php core documentation on Overloading.
Loading history...
26
}
27
28
public function process()
29
{
30
$package = $this->getPackage();
31
if (!$package->ID) {
32
throw new Exception('Package not specified');
33
}
34
35
$builder = Injector::inst()->get('AddonBuilder');
36
37
$builder->build($package);
38
39
$package->BuildQueued = false;
40
$package->write();
41
42
// Send the package to stitch-data for data warehousing
The property PackageID does not seem to exist. Did you mean packageID?
An attempt at access to an undefined property has been detected. This may either be a typographical error
or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods
to allow access. See the php core documentation on Overloading.
An attempt at access to an undefined property has been detected. This may either be a typographical error or the property has been renamed but there are still references to its old name.
If you really want to allow access to undefined properties, you can define magic methods to allow access. See the php core documentation on Overloading.