We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49e59cb commit 8f3d483Copy full SHA for 8f3d483
sami_config.php
@@ -1,7 +1,7 @@
1
<?php
2
3
use Sami\Sami;
4
-use Sami\RemoteRepository\GitHubRemoteRepository;
+use Sami\Parser\Filter\TrueFilter;
5
use Sami\Version\GitVersionCollection;
6
use Symfony\Component\Finder\Finder;
7
@@ -19,7 +19,7 @@
19
->add('master','master')
20
;
21
22
-return new Sami($iterator,array(
+$sami= new Sami($iterator,array(
23
'theme' => 'default',
24
'title' => 'Laravel Composer Security API',
25
'versions' => $versions,
@@ -28,3 +28,12 @@
28
'default_opened_level' => 1,
29
));
30
31
+/**
32
+ * Include this section if you want sami to document
33
+ * private and protected functions/properties
34
+ */
35
+$sami['filter'] = function () {
36
+ return new TrueFilter();
37
+};
38
+
39
+return $sami;
0 commit comments