Skip to content

Instantly share code, notes, and snippets.

@maxca
Last active October 25, 2016 06:46
Show Gist options
  • Select an option

  • Save maxca/64c84d68afe04aa55c8063e85a51a767 to your computer and use it in GitHub Desktop.

Select an option

Save maxca/64c84d68afe04aa55c8063e85a51a767 to your computer and use it in GitHub Desktop.
<?php
class servicePackageRepository implements servicePackageInterface
{
private $packageId;
private $lang;
private $serviceCall3rdRepository;
public function __construct(serviceCall3rdRepository $serviceCall3rdRepository, $package_id)
{
$this->serviceCall3rdRepository = $serviceCall3rdRepository;
$this->packageId = $package_id;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment