Completed
Push — master ( 9adf16...5f50d9 )
by Vladimir
02:42
created
docs/sami-config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__ . '/ApiFilter.php';
3
+require_once __DIR__.'/ApiFilter.php';
4 4
 
5 5
 use allejo\Sami\ApiFilter;
6 6
 use Sami\RemoteRepository\GitHubRemoteRepository;
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
 $iterator = Finder::create()
12 12
     ->files()
13 13
     ->name('*.php')
14
-    ->in($dir = __DIR__ . '/../src')
14
+    ->in($dir = __DIR__.'/../src')
15 15
 ;
16 16
 
17 17
 // generate documentation for all 0.* branches and the master branch
@@ -24,8 +24,8 @@  discard block
 block discarded – undo
24 24
 $sami = new Sami($iterator, array(
25 25
     'versions'             => $versions,
26 26
     'title'                => 'PhpPulse API',
27
-    'build_dir'            => __DIR__ . '/api/build/PhpPulse/%version%',
28
-    'cache_dir'            => __DIR__ . '/api/cache/PhpPulse/%version%',
27
+    'build_dir'            => __DIR__.'/api/build/PhpPulse/%version%',
28
+    'cache_dir'            => __DIR__.'/api/cache/PhpPulse/%version%',
29 29
     'remote_repository'    => new GitHubRemoteRepository('allejo/PhpPulse', dirname($dir)),
30 30
     'default_opened_level' => 2,
31 31
 ));
Please login to merge, or discard this patch.