# fluentform/3.6.31/app/Services/Spout/Autoloader/autoload.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 3.6.31. 16 lines.

- Page: https://pluginprobe.com/plugins/fluentform/3.6.31/code/app/Services/Spout/Autoloader/autoload.php
- Raw: https://pluginprobe.com/plugins/fluentform/3.6.31/raw/app/Services/Spout/Autoloader/autoload.php
- Modified: 2019-05-31T20:28:28+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/fluentform/3.6.31/code/app/Services/Spout/Autoloader/autoload.php#L10-L20`.

```php
<?php

namespace Box\Spout\Autoloader;

require_once 'Psr4Autoloader.php';

/**
 * @var string $srcBaseDirectory
 * Full path to "src/Spout" which is what we want "Box\Spout" to map to.
 */
$srcBaseDirectory = dirname(dirname(__FILE__));

$loader = new Psr4Autoloader();
$loader->register();
$loader->addNamespace('Box\Spout', $srcBaseDirectory);

```
