Skip to content

Commit 467cdb0

Browse files
committed
Add docs
1 parent b93379a commit 467cdb0

File tree

390 files changed

+44703
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

390 files changed

+44703
-0
lines changed

docs/classes.xhtml

Lines changed: 695 additions & 0 deletions
Large diffs are not rendered by default.

docs/classes/Exception.xhtml

Lines changed: 134 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE html SYSTEM "about:legacy-compat">
3+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
4+
<head>
5+
<title>phpDox - Exception</title>
6+
<link rel="stylesheet" type="text/css" href="../css/style.css" media="screen"/>
7+
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8+
</head>
9+
<body>
10+
<nav class="topnav">
11+
<ul>
12+
<li>
13+
<div class="logo"><span>/**</span>phpDox</div>
14+
</li>
15+
<li class="separator">
16+
<a href="../index.xhtml">Overview</a>
17+
</li>
18+
<li class="separator">
19+
<a href="../namespaces.xhtml">Namespaces</a>
20+
</li>
21+
<li>
22+
<a href="../interfaces.xhtml">Interfaces</a>
23+
</li>
24+
<li>
25+
<a href="../classes.xhtml">Classes</a>
26+
</li>
27+
<li>
28+
<a href="../traits.xhtml">Traits</a>
29+
</li>
30+
<li class="separator">
31+
<a href="../source/index.xhtml">Source</a>
32+
</li>
33+
</ul>
34+
</nav>
35+
<div id="mainstage">
36+
<div class="box">
37+
<ul class="breadcrumb">
38+
<li>
39+
<a href="../index.xhtml">Overview</a>
40+
</li>
41+
<li class="separator">
42+
<a href="../classes.xhtml">Classes</a>
43+
</li>
44+
<li class="separator">Exception</li>
45+
</ul>
46+
</div>
47+
<nav class="box">
48+
<ul>
49+
<li>
50+
<a href="#introduction">Introduction</a>
51+
</li>
52+
<li>
53+
<a href="#synopsis">Synopsis</a>
54+
</li>
55+
<li>
56+
<a href="#members">Members</a>
57+
</li>
58+
<li>
59+
<a href="#methods">Methods</a>
60+
</li>
61+
</ul>
62+
</nav>
63+
<section>
64+
<h1 id="introduction"><small>\</small>Exception</h1>
65+
<h4/>
66+
<p/>
67+
<h2 id="synopsis">Synopsis</h2>
68+
<div class="synopsis">class Exception
69+
{<br/><ul class="none"><li>// members</li><li>protected  <a href="#members">$message</a>;
70+
</li><li>protected  <a href="#members">$code</a>;
71+
</li><li>protected  <a href="#members">$file</a>;
72+
</li><li>protected  <a href="#members">$line</a>;
73+
</li></ul><ul class="none"><li>// methods</li><li>public void <a title="Exception" href="../classes/Exception/__construct.xhtml">__construct</a>()
74+
</li><li>public final string <a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage</a>()
75+
</li><li>public final Throwable <a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious</a>()
76+
</li><li>public final mixed <a title="Exception" href="../classes/Exception/getCode.xhtml">getCode</a>()
77+
</li><li>public final string <a title="Exception" href="../classes/Exception/getFile.xhtml">getFile</a>()
78+
</li><li>public final int <a title="Exception" href="../classes/Exception/getLine.xhtml">getLine</a>()
79+
</li><li>public final array <a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace</a>()
80+
</li><li>public final string <a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString</a>()
81+
</li><li>public string <a title="Exception" href="../classes/Exception/__toString.xhtml">__toString</a>()
82+
</li><li> final void <a title="Exception" href="../classes/Exception/__clone.xhtml">__clone</a>()
83+
</li></ul>
84+
85+
}<br/></div>
86+
<h2 id="members">Members</h2>
87+
<div class="styled members">
88+
<h4>protected</h4>
89+
<ul class="members">
90+
<li id="code"><strong>$code</strong>
91+
92+
int<br/><span class="indent">The exception code</span></li>
93+
<li id="file"><strong>$file</strong>
94+
95+
string<br/><span class="indent">The filename where the exception was created</span></li>
96+
<li id="line"><strong>$line</strong>
97+
98+
int<br/><span class="indent">The line where the exception was created</span></li>
99+
<li id="message"><strong>$message</strong>
100+
101+
string<br/><span class="indent">The exception message</span></li>
102+
</ul>
103+
</div>
104+
<h2 id="methods">Methods</h2>
105+
<div class="styled">
106+
<h4>public</h4>
107+
<ul>
108+
<li id="__construct"><a title="Exception" href="../classes/Exception/__construct.xhtml">__construct()</a>
109+
— Construct the exception</li>
110+
<li id="__toString"><a title="Exception" href="../classes/Exception/__toString.xhtml">__toString()</a>
111+
— String representation of the exception</li>
112+
<li id="getCode"><a title="Exception" href="../classes/Exception/getCode.xhtml">getCode()</a>
113+
— Gets the Exception code</li>
114+
<li id="getFile"><a title="Exception" href="../classes/Exception/getFile.xhtml">getFile()</a>
115+
— Gets the file in which the exception was created</li>
116+
<li id="getLine"><a title="Exception" href="../classes/Exception/getLine.xhtml">getLine()</a>
117+
— Gets the line in which the exception was created</li>
118+
<li id="getMessage"><a title="Exception" href="../classes/Exception/getMessage.xhtml">getMessage()</a>
119+
— Gets the Exception message</li>
120+
<li id="getPrevious"><a title="Exception" href="../classes/Exception/getPrevious.xhtml">getPrevious()</a>
121+
— Returns previous Exception</li>
122+
<li id="getTrace"><a title="Exception" href="../classes/Exception/getTrace.xhtml">getTrace()</a>
123+
— Gets the stack trace</li>
124+
<li id="getTraceAsString"><a title="Exception" href="../classes/Exception/getTraceAsString.xhtml">getTraceAsString()</a>
125+
— Gets the stack trace as a string</li>
126+
</ul>
127+
</div>
128+
</section>
129+
</div>
130+
<footer>
131+
<span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span>
132+
</footer>
133+
</body>
134+
</html>
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE html SYSTEM "about:legacy-compat">
3+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
4+
<head>
5+
<title>phpDox - Exception::__clone</title>
6+
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
7+
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8+
</head>
9+
<body>
10+
<nav class="topnav">
11+
<ul>
12+
<li>
13+
<div class="logo"><span>/**</span>phpDox</div>
14+
</li>
15+
<li class="separator">
16+
<a href="../../index.xhtml">Overview</a>
17+
</li>
18+
<li class="separator">
19+
<a href="../../namespaces.xhtml">Namespaces</a>
20+
</li>
21+
<li>
22+
<a href="../../interfaces.xhtml">Interfaces</a>
23+
</li>
24+
<li>
25+
<a href="../../classes.xhtml">Classes</a>
26+
</li>
27+
<li>
28+
<a href="../../traits.xhtml">Traits</a>
29+
</li>
30+
<li class="separator">
31+
<a href="../../source/index.xhtml">Source</a>
32+
</li>
33+
</ul>
34+
</nav>
35+
<div id="mainstage">
36+
<div class="box">
37+
<ul class="breadcrumb">
38+
<li>
39+
<a href="../../index.xhtml">Overview</a>
40+
</li>
41+
<li class="separator">
42+
<a href="../../classes.xhtml">Classes</a>
43+
</li>
44+
<li class="separator">
45+
<a href="../../classes.xhtml#"/>
46+
</li>
47+
<li class="separator">
48+
<a title="Exception" href="../../classes/Exception.xhtml">Exception</a>
49+
</li>
50+
<li class="separator">__clone</li>
51+
</ul>
52+
</div>
53+
<nav class="box">
54+
<ul>
55+
<li>
56+
<a href="#introduction">Introduction</a>
57+
</li>
58+
<li>
59+
<a href="#synopsis">Synopsis</a>
60+
</li>
61+
<li>
62+
<a href="#return">Return</a>
63+
</li>
64+
</ul>
65+
</nav>
66+
<section>
67+
<h1><small>Exception::</small>__clone</h1>
68+
<h4>Clone the exception</h4>
69+
<p/>
70+
<ul/>
71+
<h2 id="signature">Signature</h2>
72+
<div class="styled synopsis">
73+
<code> function __clone()
74+
</code>
75+
</div>
76+
<h2 id="return">Returns</h2>
77+
<dl class="styled">
78+
<dt>void</dt>
79+
<dd/>
80+
</dl>
81+
</section>
82+
</div>
83+
<footer>
84+
<span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span>
85+
</footer>
86+
</body>
87+
</html>
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE html SYSTEM "about:legacy-compat">
3+
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
4+
<head>
5+
<title>phpDox - Exception::__construct</title>
6+
<link rel="stylesheet" type="text/css" href="../../css/style.css" media="screen"/>
7+
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
8+
</head>
9+
<body>
10+
<nav class="topnav">
11+
<ul>
12+
<li>
13+
<div class="logo"><span>/**</span>phpDox</div>
14+
</li>
15+
<li class="separator">
16+
<a href="../../index.xhtml">Overview</a>
17+
</li>
18+
<li class="separator">
19+
<a href="../../namespaces.xhtml">Namespaces</a>
20+
</li>
21+
<li>
22+
<a href="../../interfaces.xhtml">Interfaces</a>
23+
</li>
24+
<li>
25+
<a href="../../classes.xhtml">Classes</a>
26+
</li>
27+
<li>
28+
<a href="../../traits.xhtml">Traits</a>
29+
</li>
30+
<li class="separator">
31+
<a href="../../source/index.xhtml">Source</a>
32+
</li>
33+
</ul>
34+
</nav>
35+
<div id="mainstage">
36+
<div class="box">
37+
<ul class="breadcrumb">
38+
<li>
39+
<a href="../../index.xhtml">Overview</a>
40+
</li>
41+
<li class="separator">
42+
<a href="../../classes.xhtml">Classes</a>
43+
</li>
44+
<li class="separator">
45+
<a href="../../classes.xhtml#"/>
46+
</li>
47+
<li class="separator">
48+
<a title="Exception" href="../../classes/Exception.xhtml">Exception</a>
49+
</li>
50+
<li class="separator">__construct</li>
51+
</ul>
52+
</div>
53+
<nav class="box">
54+
<ul>
55+
<li>
56+
<a href="#introduction">Introduction</a>
57+
</li>
58+
<li>
59+
<a href="#synopsis">Synopsis</a>
60+
</li>
61+
<li>
62+
<a href="#parameter">Parameter</a>
63+
</li>
64+
<li>
65+
<a href="#return">Return</a>
66+
</li>
67+
</ul>
68+
</nav>
69+
<section>
70+
<h1><small>Exception::</small>__construct</h1>
71+
<h4>Construct the exception</h4>
72+
<p/>
73+
<ul/>
74+
<h2 id="signature">Signature</h2>
75+
<div class="styled synopsis">
76+
<code>public function __construct(string
77+
$message,
78+
int
79+
$code,
80+
<a title="" href="../../classes/.xhtml"/>
81+
$previous )
82+
</code>
83+
</div>
84+
<h2 id="parameterlist">Parameters</h2>
85+
<dl class="styled">
86+
<dt><code>$message</code>
87+
88+
string</dt>
89+
<dd/>
90+
<dt><code>$code</code>
91+
92+
int</dt>
93+
<dd/>
94+
<dt><code>$previous</code>
95+
96+
<a title="" href="../../classes/.xhtml"/></dt>
97+
<dd/>
98+
</dl>
99+
<h2 id="return">Returns</h2>
100+
<dl class="styled">
101+
<dt>void</dt>
102+
<dd/>
103+
</dl>
104+
</section>
105+
</div>
106+
<footer>
107+
<span>Generated using phpDox 0.12.0 - Copyright (C) 2010 - 2020 by Arne Blankerts and Contributors</span>
108+
</footer>
109+
</body>
110+
</html>

0 commit comments

Comments
 (0)