loadManifest() public method

Load the service provider manifest JSON file.
public loadManifest ( ) : array
return array
Example #1
0
 /**
  * It's entirely possible with this approach that the manifest is empty. As a result,
  * we should return the default array if no manifest is found.
  *
  * @return array
  */
 public function loadManifest()
 {
     $manifest = parent::loadManifest();
     if (!$manifest) {
         $manifest = $this->default;
     }
     return $manifest;
 }