Skip to content

Commit

Permalink
V. 0.0.1-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
overclokk committed May 6, 2018
1 parent b592a26 commit 05b3bbc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# config
ItalyStrap Config Module - a simple and useful configuration package

varsion 0.0.1-alpha
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@
}
},
"minimum-stability": "dev",
"require": {}
"require": {},
"require-dev": {}
}
4 changes: 2 additions & 2 deletions src/Config/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/**
* Config Class that handle the classes configuration
*
* @version 0.0.1
* @version 0.0.1-alpha
*
* @package ItalyStrap
* @package ItalyStrap\Config
*/

namespace ItalyStrap\Config;
Expand Down
6 changes: 2 additions & 4 deletions src/Config/Config_Factory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/**
* Config Class that handle the classes configuration
*
* @version 0.0.1
* @version 0.0.1-alpha
*
* @package ItalyStrap
* @package ItalyStrap\Config
*/

namespace ItalyStrap\Config;
Expand All @@ -17,8 +17,6 @@ class Config_Factory {
/**
* Load and return the Config object.
*
* @since 3.0.0
*
* @param string|array $config File path and filename to the config array; or it is the
* configuration array.
* @param string|array $defaults Specify a defaults array, which is then merged together
Expand Down
8 changes: 3 additions & 5 deletions src/Config/Config_Interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
/**
* Config Class that handle the classes configuration
*
* @package ItalyStrap
* @version 0.0.1-alpha
*
* @package ItalyStrap\Config
*/

namespace ItalyStrap\Config;
Expand All @@ -12,8 +14,6 @@ interface Config_Interface {
/**
* Retrieves all of the runtime configuration parameters
*
* @since 0.0.1
*
* @return array
*/
public function all();
Expand All @@ -38,8 +38,6 @@ public function has( $parameter_key );
/**
* Push a configuration in via the key
*
* @since 0.0.1
*
* @param string $parameter_key Key to be assigned, which also becomes the property
* @param mixed $value Value to be assigned to the parameter key
* @return null
Expand Down

0 comments on commit 05b3bbc

Please sign in to comment.