forked from theseer/phpdox
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace the '\' to '_' class FQN transformation by SHA1 to prevent issue with filename being too long. Close theseer#351
- Loading branch information
Showing
8 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
.../Phasellus/aliquet/lacus/vel/lectus/vehicula/facilisis/quis/eu/ex/Duis/dignissim/test.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
namespace Lorem\ipsum\dolor\sit\amet\consectetur\adipiscing\elit\Phasellus\aliquet\lacus\vel\lectus\vehicula\facilisis\quis\eu\ex\Duis\dignissim; | ||
|
||
class NequePorroQuisquamEstQuiDoloremIpsumQuiaDolorSitAmetConsecteturAdipisciVelit | ||
{ | ||
public $var = 'hello'; | ||
const A_PLACE = 'world'; | ||
|
||
function f() { | ||
// ... | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
class NoNamespace { | ||
function foo() | ||
{ | ||
// ... | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<phpdox xmlns="http://xml.phpdox.net/config" silent="false"> | ||
|
||
<project name="phpDox-issue" source="${basedir}/src" workdir="${basedir}/xml"> | ||
|
||
<collector publiconly="false" backend="parser" /> | ||
|
||
<generator output="${basedir}/docs"> | ||
<build engine="html" enabled="true" output="html" /> | ||
<build engine="xml" enabled="true" output="xml" /> | ||
</generator> | ||
|
||
</project> | ||
|
||
</phpdox> |