Skip to content

Instantly share code, notes, and snippets.

@jasonrhodes
Created February 16, 2017 02:35
Show Gist options
  • Save jasonrhodes/435402e4c9f534ec0f2cfe911642a6c5 to your computer and use it in GitHub Desktop.
Save jasonrhodes/435402e4c9f534ec0f2cfe911642a6c5 to your computer and use it in GitHub Desktop.
<?php
class Wrapped {
public function __construct($type) {
$class = $type . 'Banner';
$this->instance = new $class();
}
}
$myThing = new Wrapped('acf')->instance;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment