Completed
Push — master ( af2051...75ecb7 )
by Chris
02:15
created
src/Darya/Service/Container.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -193,7 +193,7 @@
 block discarded – undo
193 193
 		
194 194
 		$container = $this;
195 195
 		
196
-		return function () use ($callable, $container) {
196
+		return function() use ($callable, $container) {
197 197
 			static $instance;
198 198
 			
199 199
 			if ($instance === null) {
Please login to merge, or discard this patch.
src/Darya/Storage/InMemory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -171,7 +171,7 @@
 block discarded – undo
171 171
 		$this->data[$resource] = $this->filterer->map(
172 172
 			$this->data[$resource],
173 173
 			$filter,
174
-			function ($row) use ($data, &$affected) {
174
+			function($row) use ($data, &$affected) {
175 175
 				foreach ($data as $key => $value) {
176 176
 					$row[$key] = $value;
177 177
 				}
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/DatabaseStorageService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 	public function register(Container $container)
20 20
 	{
21 21
 		$container->register(array(
22
-			'Darya\Database\Storage' => function ($container) {
22
+			'Darya\Database\Storage' => function($container) {
23 23
 				return new Storage($container->resolve('Darya\Database\Connection'));
24 24
 			},
25 25
 			'Darya\Storage\Readable'   => 'Darya\Database\Storage',
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/HttpService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
 	public function register(Container $container)
17 17
 	{
18 18
 		$container->register(array(
19
-			'Darya\Http\Request' => function ($container) {
19
+			'Darya\Http\Request' => function($container) {
20 20
 				return Request::createFromGlobals($container->resolve('Darya\Http\Session'));
21 21
 			},
22 22
 			'Darya\Http\Session' => new PhpSession
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/SmartyViewService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 	public function register(Container $container)
16 16
 	{
17 17
 		$container->register(array(
18
-			'Darya\Smarty\ViewResolver' => function ($container) {
18
+			'Darya\Smarty\ViewResolver' => function($container) {
19 19
 				$config = $container->config;
20 20
 				$basePath = $config['project.base_path'];
21 21
 				$realBasePath = realpath("{$basePath}/views/smarty");
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/DatabaseConnectionService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
 	public function register(Container $container)
18 18
 	{
19 19
 		$container->register(array(
20
-			'Darya\Database\Connection' => function ($container) {
20
+			'Darya\Database\Connection' => function($container) {
21 21
 				$config = $container->config;
22 22
 				
23 23
 				$connection = new MySql(
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/RoutingService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
 	public function register(Container $container)
16 16
 	{
17 17
 		$container->register(array(
18
-			'Darya\Routing\Router' => function ($container) {
18
+			'Darya\Routing\Router' => function($container) {
19 19
 				$config = $container->config;
20 20
 				
21 21
 				$routes = $config['routes'] ?: array(
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/ConfigurationService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
 	public function register(Container $container)
25 25
 	{
26 26
 		$container->register(array(
27
-			'Darya\Foundation\Configuration' => function (Application $application) {
27
+			'Darya\Foundation\Configuration' => function(Application $application) {
28 28
 				$basePath = $application->basePath();
29 29
 				
30 30
 				// Load the application's configuration
Please login to merge, or discard this patch.
src/Darya/Foundation/Providers/DebugService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 		
33 33
 		ini_set('display_errors', 1);
34 34
 		
35
-		$listener = function ($result) {
35
+		$listener = function($result) {
36 36
 			Chrome::log(array($result->query->string, json_encode($result->query->parameters)));
37 37
 			
38 38
 			if ($result->error) {
Please login to merge, or discard this patch.