Skip to content

Instantly share code, notes, and snippets.

@vijaycs85
Last active August 29, 2015 14:07
Show Gist options
  • Save vijaycs85/a32aae8c01b0f0b69812 to your computer and use it in GitHub Desktop.
Save vijaycs85/a32aae8c01b0f0b69812 to your computer and use it in GitHub Desktop.
<?php
class ConfigImporter {
protected $storage;
public function setStorage($storage) {
$this->storage = $storage;
}
pubic function getStorage($file_path) {
if (isset($this->storage)) {
return $this->strorage;
}
return new FileStorage($file_path);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment