Git Repository Public Repository

namibia

URLs

Copy to Clipboard
 
c449ac80b48405f72fd700d5cd406397b3a17d8a
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
<?php
namespace Auction;


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.Auction' => __NAMESPACE__ . '\Service\Auction',
						__NAMESPACE__ . '.Service.Basket' => __NAMESPACE__ . '\Service\Basket',
						__NAMESPACE__ . '.Service.Bid' => __NAMESPACE__ . '\Service\Bid',
						__NAMESPACE__ . '.Service.AutoBid' => __NAMESPACE__ . '\Service\AutoBid',
						__NAMESPACE__ . '.Service.Question' => __NAMESPACE__ . '\Service\Question',
						__NAMESPACE__ . '.Service.Reply' => __NAMESPACE__ . '\Service\Reply',
						__NAMESPACE__ . '.Service.Increment' => __NAMESPACE__ . '\Service\Increment',
						__NAMESPACE__ . '.Service.PublicHoliday' => __NAMESPACE__ . '\Service\PublicHoliday',
						__NAMESPACE__ . '.Service.OpenDay' => __NAMESPACE__ . '\Service\OpenDay',
						__NAMESPACE__ . '.Service.Pdf' => __NAMESPACE__ . '\Service\Pdf'
				)
		);
	}

}

Commits for namibia/module/Auction/Module.php

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

initial commit