# depicter/1.3.3/app/src/Dashboard/DashboardServiceProvider.php

Depicter — Popup &amp; Slider Builder, version 1.3.3. 31 lines.

- Page: https://pluginprobe.com/plugins/depicter/1.3.3/code/app/src/Dashboard/DashboardServiceProvider.php
- Raw: https://pluginprobe.com/plugins/depicter/1.3.3/raw/app/src/Dashboard/DashboardServiceProvider.php
- Modified: 2022-06-01T06:26:20+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/depicter/1.3.3/code/app/src/Dashboard/DashboardServiceProvider.php#L10-L20`.

```php
<?php
namespace Depicter\Dashboard;

use WPEmerge\ServiceProviders\ServiceProviderInterface;

/**
 * Loads dashboard.
 */
class DashboardServiceProvider implements ServiceProviderInterface {

	/**
	 * {@inheritDoc}
	 */
	/**
	 * {@inheritDoc}
	 */
	public function register( $container ) {
		$container[ 'depicter.dashboard.page' ] = function () {
			return new DashboardPage();
		};
	}

	/**
	 * {@inheritDoc}
	 */
	public function bootstrap( $container ) {
		\Depicter::resolve('depicter.dashboard.page')->bootstrap();
	}

}

```
