Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
composer-phpcodesniffer-standards-plugin
Manage
Activity
Members
Labels
Plan
Issues
8
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Service Desk
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
Daniel Hürtgen
composer-phpcodesniffer-standards-plugin
Commits
a274f325
There was an error fetching the commit references. Please try again later.
Commit
a274f325
authored
7 years ago
by
Daniel Hürtgen
Browse files
Options
Downloads
Patches
Plain Diff
BUGFIX: cksum of ruleset.xml content should be generated not of path
parent
ecb4fea6
2 merge requests
!21
Release 0.3.0
,
!19
Bugfix/18 installer is installed seems not to work
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Installer.php
+1
-1
1 addition, 1 deletion
src/Installer.php
with
1 addition
and
1 deletion
src/Installer.php
+
1
−
1
View file @
a274f325
...
...
@@ -160,7 +160,7 @@ class Installer extends LibraryInstaller
protected
function
compareStandards
(
Standard
$source
,
Standard
$destination
)
{
return
$source
->
getName
()
===
$destination
->
getName
()
&&
sha1
(
$source
->
getRuleSetXmlPath
())
===
sha1
(
$destination
->
getRuleSetXmlPath
());
&&
sha1
_file
(
$source
->
getRuleSetXmlPath
())
===
sha1
_file
(
$destination
->
getRuleSetXmlPath
());
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment