Skip to content

Commit d2eba45

Browse files
committed
Release 8.3.7
1 parent 7e9e274 commit d2eba45

File tree

28,039 files changed

+4832890
-1
lines changed

Some content is hidden

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

28,039 files changed

+4832890
-1
lines changed

docs/api/classes.html

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

docs/api/classes/Exception.html

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

0 commit comments

Comments
 (0)