Git Repository Public Repository

namibia

URLs

Copy to Clipboard
 
3f90871e7fc92aa1d6bf9a1115a81e11636bbd1a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<?php
namespace Stock;


class Module
{

	public function getAutoloaderConfig()
	{
		return array(
			'Zend\Loader\ClassMapAutoloader' => array(
				__DIR__ . '/autoload_classmap.php',
			)
		);
	}

	public function getConfig()
	{
		return include __DIR__ . '/config/module.config.php';
	}

	public function getServiceConfig()
	{
		return array(
			'invokables' => array(
				__NAMESPACE__                                 => __NAMESPACE__ . '\Workflow',
				__NAMESPACE__ . '.Service.Stock'              => __NAMESPACE__ . '\Service\Stock',
				__NAMESPACE__ . '.Service.Utility'            => __NAMESPACE__ . '\Service\Utility',
				__NAMESPACE__ . '.Service.Accessory'          => __NAMESPACE__ . '\Service\Accessory',
				__NAMESPACE__ . '.Service.Damage'             => __NAMESPACE__ . '\Service\Damage',
				__NAMESPACE__ . '.Service.Report'             => __NAMESPACE__ . '\Service\Report',
				__NAMESPACE__ . '.Service.Pdf'                => __NAMESPACE__ . '\Service\Pdf',
				__NAMESPACE__ . '.Service.Year'               => __NAMESPACE__ . '\Service\Year',
				__NAMESPACE__ . '.Service.Category'           => __NAMESPACE__ . '\Service\Category',
				__NAMESPACE__ . '.Service.Condition'          => __NAMESPACE__ . '\Service\Condition',
				__NAMESPACE__ . '.Service.ExteriorColour'     => __NAMESPACE__ . '\Service\ExteriorColour',
				__NAMESPACE__ . '.Service.InteriorColour'     => __NAMESPACE__ . '\Service\InteriorColour',
				__NAMESPACE__ . '.Service.Upholstery'         => __NAMESPACE__ . '\Service\Upholstery',
				__NAMESPACE__ . '.Service.Paper'              => __NAMESPACE__ . '\Service\Paper',
				__NAMESPACE__ . '.Service.Natis'              => __NAMESPACE__ . '\Service\Natis',
				__NAMESPACE__ . '.Service.FullServiceHistory' => __NAMESPACE__ . '\Service\FullServiceHistory',
				__NAMESPACE__ . '.Service.TransmissionType'   => __NAMESPACE__ . '\Service\TransmissionType',
				__NAMESPACE__ . '.Service.FuelType'           => __NAMESPACE__ . '\Service\FuelType',
				__NAMESPACE__ . '.Service.Make'               => __NAMESPACE__ . '\Service\Make',
				__NAMESPACE__ . '.Service.Type'               => __NAMESPACE__ . '\Service\Type',
				__NAMESPACE__ . '.Service.PricingHistory'     => __NAMESPACE__ . '\Service\PricingHistory',
				__NAMESPACE__ . '.Service.Tuhpi'              => __NAMESPACE__ . '\Service\Tuhpi',
				__NAMESPACE__ . '.Service.BulkImport'         => __NAMESPACE__ . '\Service\BulkImport',
                __NAMESPACE__ . '.Service.Import'             => __NAMESPACE__ . '\Service\Import'
			)
		);
	}

}

Commits for namibia/module/Stock/Module.php

Diff revisions: vs.
Revision Author Commited Message
df0489 ... Mark Fri 14 Oct, 2016 10:01:00 +0000

initial commit