You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
eloquent-meta/src/FoundationMetaPackage.php

39 lines
915 B

<?php
namespace Glmdev\Meta;
use Glmdev\Foundation\Contracts\FoundationPackageContract;
class FoundationMetaPackage implements FoundationPackageContract {
public function getBindName(){
return "meta";
}
public function getServiceProvider(){
return \Glmdev\Meta\MetaServiceProvider::class;
}
public function getInstance(){
return new $this;
}
public function getPublications(){
$publications = [];
return $publications;
}
public function getMiddleware(){
return [];
}
public function configModifies(){
return [];
}
public function configCallback( $type, array $bootstrap ){
return $bootstrap;
}
}