PluginProbe
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents / 3.6.3
EmbedPress – PDF Embedder, 3D PDF FlipBook, Google Reviews, YouTube Videos, Upload & Embed PDF documents v3.6.3
4.6.5 4.6.4 4.6.3 4.6.2 4.6.1 4.6.0 4.5.6 4.5.5 4.5.4 4.5.3 4.5.2 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 All 189 releases
embedpress / vendor / wpdevelopers / embera / src / Embera / ProviderCollection / CustomProviderCollection.php
CustomProviderCollection.php
36 lines 940 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * CustomProviderCollection.php
4 *
5 * @package Embera
6 * @author Michael Pratt <yo@michael-pratt.com>
7 * @link http://www.michael-pratt.com/
8 *
9 * For the full copyright and license information, please view the LICENSE
10 * file that was distributed with this source code.
11 */
12
13 namespace Embera\ProviderCollection;
14
15 /**
16 * Custom provider Collection, used for when you want to create a
17 * provider collection from scratch. You can instantiate this class
18 * and register providers manually, depending on your usage.
19 *
20 * For example:
21 *
22 * $provider = new CustomProviderCollection($config);
23 * $provider->registerProvider('Youtube');
24 * $provider->registerProvider('Vimeo');
25 * $provider->registerProvider('Instagram');
26 *
27 */
28 class CustomProviderCollection extends ProviderCollectionAdapter
29 {
30 /** inline {@inheritdoc} */
31 public function __construct(array $config = [])
32 {
33 parent::__construct($config);
34 }
35 }
36