Skip to content

Instantly share code, notes, and snippets.

@abcarroll
Created December 17, 2015 05:03
Show Gist options
  • Save abcarroll/cfc28a6392528e46d637 to your computer and use it in GitHub Desktop.
Save abcarroll/cfc28a6392528e46d637 to your computer and use it in GitHub Desktop.
<?php
class test {
public function __construct(Array $dependants) {
array_walk($dependants, function ($dVal, $dKey) {
$this->$dKey = $dVal;
});
$this->init();
$this->run();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment