X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Flib%2FDrush%2FMake%2FParser%2FParserIni.php;fp=vendor%2Fdrush%2Fdrush%2Flib%2FDrush%2FMake%2FParser%2FParserIni.php;h=0000000000000000000000000000000000000000;hp=c512072522255f48224844349ce7a69ae849927d;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/drush/drush/lib/Drush/Make/Parser/ParserIni.php b/vendor/drush/drush/lib/Drush/Make/Parser/ParserIni.php deleted file mode 100644 index c51207252..000000000 --- a/vendor/drush/drush/lib/Drush/Make/Parser/ParserIni.php +++ /dev/null @@ -1,90 +0,0 @@ - $parent[$key]); - } - if (!isset($parent[$key]) || !is_array($parent[$key])) { - $parent[$key] = array(); - } - $parent = &$parent[$key]; - } - - // Handle PHP constants. - if (defined($value)) { - $value = constant($value); - } - - // Insert actual value. - if ($last == '') { - $last = count($parent); - } - if (isset($merge_item) && isset($parent[$last]) && is_array($parent[$last])) { - $parent[$last][$merge_item] = $value; - } - else { - $parent[$last] = $value; - } - } - return $info; - } - } - -}