Skip to content

Commit

Permalink
bundle class updates
Browse files Browse the repository at this point in the history
  • Loading branch information
dlawson committed Jun 30, 2011
1 parent 2d44649 commit ba4db23
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/Bundler.php
Expand Up @@ -26,7 +26,7 @@ public function push($bundle) {
$this->bundles[] = $bundle;
}

public function get_bundle() {
public function get_bundles() {
return $this->bundles;
}

Expand Down Expand Up @@ -88,6 +88,10 @@ public function __construct($my_key, $my_path, $my_replacements = array()) {
$this->replacements = $my_replacements;
}

public function add_replacement($find, $replace) {
$this->replacements[] = $find => $replace;
}

public function get_key() {
return $this->key;
}
Expand Down

0 comments on commit ba4db23

Please sign in to comment.