Skip to content

Commit 46916c1

Browse files
committed
Fix Ci issues
1 parent cfbef15 commit 46916c1

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Select-Forms-v5.php

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,18 @@
55
*/
66
class Acf_Field_Select_Form extends \acf_field {
77

8-
/*
8+
/**
99
* This function will setup the field type data
1010
*/
1111
function __construct( $settings ) {
12-
/*
13-
* name (string) Single word, no spaces. Underscores allowed
12+
/**
13+
* Single word, no spaces. Underscores allowed
1414
*/
1515
$this->name = 'SELECT_GRAVITY_FORMS';
1616
$this->label = 'Gravity Forms';
1717
$this->category = 'choice';
1818
$this->defaults = [];
19-
$this->l10n = [
20-
'error' => 'Select a valid option',
21-
];
19+
$this->l10n = [ 'error' => 'Select a valid option' ];
2220
$this->settings = $settings;
2321

2422
parent::__construct();

0 commit comments

Comments
 (0)