PHP Classes

File: src/ConfigAwareInterface.php

Recommend this page to a friend!
  Classes of Vitaly   Queasy PHP Config   src/ConfigAwareInterface.php   Download  
File: src/ConfigAwareInterface.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Queasy PHP Config
Read a configuration from files in several formats
Author: By
Last change:
Date: 2 years ago
Size: 304 bytes
 

Contents

Class file image Download
<?php

namespace queasy\config;

/**
 * Describes a config-aware instance.
 */
interface ConfigAwareInterface
{
   
/**
     * Sets a config instance on the object.
     *
     * @param ConfigInterface $config
     *
     * @return void
     */
   
public function setConfig(ConfigInterface $config);
}