You are here

PhpFileLoaderInterface.php in Libraries API 8.3

File

src/ExternalLibrary/PhpFile/PhpFileLoaderInterface.php
View source
<?php

namespace Drupal\libraries\ExternalLibrary\PhpFile;


/**
 * Provides an interface for PHP file loaders.
 *
 * @see \Drupal\libraries\ExternalLibrary\PhpFile\PhpFileLibraryInterface
 */
interface PhpFileLoaderInterface {

  /**
   * Loads a PHP file.
   *
   * @param string $file
   *   The absolute file path to the PHP file.
   */
  public function load($file);

}

Interfaces

Namesort descending Description
PhpFileLoaderInterface Provides an interface for PHP file loaders.