Skip to content

Commit

Permalink
#16023 - Adjust comments style
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeckerson committed Aug 22, 2022
1 parent ef003b1 commit b87f9cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions phalcon/Tag.zep
Original file line number Diff line number Diff line change
Expand Up @@ -1477,8 +1477,8 @@ class Tag
}

/**
* Automatically assign the id if the name is not an array
*/
* Automatically assign the id if the name is not an array
*/
if !strpos(id, "[") {
if !isset params["id"] {
let params["id"] = id;
Expand All @@ -1502,15 +1502,15 @@ class Tag
let value = self::getValue(id, params);

/**
* Evaluate the value in POST
*/
* Evaluate the value in POST
*/
if value != null {
let params["checked"] = "checked";
}

/**
* Update the value anyways
*/
* Update the value anyways
*/
let params["value"] = value;
}

Expand Down

0 comments on commit b87f9cc

Please sign in to comment.