Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
erg
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
erg
Merge requests
!4
Issue
#3331498
: Fix PHPCS errors and warnings
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Issue
#3331498
: Fix PHPCS errors and warnings
issue/erg-3331498:3331498-fix-phpcs-errors
into
8.x-1.x
Overview
0
Commits
4
Pipelines
1
Changes
24
Open
Soliman Harkas
requested to merge
issue/erg-3331498:3331498-fix-phpcs-errors
into
8.x-1.x
2 years ago
Overview
0
Commits
4
Pipelines
1
Changes
24
Expand
0
0
Merge request reports
Compare
8.x-1.x
version 3
95ed5f5c
8 months ago
version 2
c8513784
2 years ago
version 1
d19c07fd
2 years ago
8.x-1.x (HEAD)
and
latest version
latest version
ca281161
4 commits,
7 months ago
version 3
95ed5f5c
3 commits,
8 months ago
version 2
c8513784
2 commits,
2 years ago
version 1
d19c07fd
1 commit,
2 years ago
24 files
+
137
−
68
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
src/Field/FieldSettings.php
+
12
−
1
Options
<?php
declare
(
strict_types
=
1
);
declare
(
strict_types
=
1
);
namespace
Drupal\erg\Field
;
@@ -12,7 +12,18 @@ use Drupal\erg\Guard\GuardInterface;
*/
final
class
FieldSettings
{
/**
* The guards.
*
* @var array
*/
private
$guards
=
[];
/**
* The weight.
*
* @var int
*/
private
$weight
=
0
;
/**
Loading