Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
assert-function-signature
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jan Kuchař
assert-function-signature
Merge requests
!1
renamed exception to be more consistent with original PHP one
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
renamed exception to be more consistent with original PHP one
rename-error
into
master
Overview
0
Commits
1
Pipelines
2
Changes
2
Merged
Jan Kuchař
requested to merge
rename-error
into
master
8 years ago
Overview
0
Commits
1
Pipelines
2
Changes
2
Expand
0
0
Merge request reports
Compare
master
version 1
9a64ea59
8 years ago
master (base)
and
latest version
latest version
3f466774
1 commit,
8 years ago
version 1
9a64ea59
1 commit,
8 years ago
2 files
+
4
−
10
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/exceptions.php
+
1
−
7
Options
<?php
declare
(
strict_types
=
1
);
namespace
Grifart\AssertFunction
;
use
Throwable
;
final
class
AssertFunctionError
extends
\AssertionError
{
final
class
FunctionAssertionError
extends
\AssertionError
{
const
PATH_DEPTH
=
2
;
@@ -53,5 +49,3 @@ final class AssertFunctionError extends \AssertionError {
return
implode
(
'/'
,
$pathParts
);
// normalized shortened readable path
}
};
abstract
class
RuntimeException
extends
\RuntimeException
{};
Loading