Revision: 226
http://sourceforge.net/p/beeframework/code/226
Author: m_plomer
Date: 2014-09-25 20:21:25 +0000 (Thu, 25 Sep 2014)
Log Message:
-----------
- added source array setter to Context\Config\ArrayValue
Modified Paths:
--------------
trunk/framework/Bee/Context/Config/ArrayValue.php
Modified: trunk/framework/Bee/Context/Config/ArrayValue.php
===================================================================
--- trunk/framework/Bee/Context/Config/ArrayValue.php 2014-09-22 19:18:45 UTC (rev 225)
+++ trunk/framework/Bee/Context/Config/ArrayValue.php 2014-09-25 20:21:25 UTC (rev 226)
@@ -156,4 +156,11 @@
public function getValue() {
return $this->sourceArray;
}
+
+ /*
+ *
+ */
+ public function setValue(array $value) {
+ $this->sourceArray = $value;
+ }
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|