Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JPustkuchen committed May 10, 2021
1 parent 9eeabfa commit 9b1df2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Elements/TableCell.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,21 +14,21 @@ class TableCell extends HtmlEntity {
/**
* Cell value.
*/
private ?string $value;
private ?string $value = null;

/**
* Raw content to prepend to value.
* Use with care and not for user input!
* This will not be auto-escaped!
*/
private string $beforeValueRaw;
private ?string $beforeValueRaw = null;

/**
* Raw content to append to value.
* Use with care and not for user input!
* This will not be auto-escaped!
*/
private string $afterValueRaw;
private ?string $afterValueRaw = null;


public function __construct(string $key, ?string $value = null, ?HtmlAttributes $attributes = null) {
Expand Down

0 comments on commit 9b1df2f

Please sign in to comment.