Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions src/Show/Fields/SharpShowEntityListField.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

use Code16\Sharp\Utils\Entities\SharpEntityManager;
use Code16\Sharp\Utils\Filters\Filter;
use Deprecated;

class SharpShowEntityListField extends SharpShowField
{
Expand Down Expand Up @@ -115,6 +116,15 @@ public function setLabel(string $label): self
return $this;
}

/**
* @deprecated Not used anymore, EEL are shown no matter what.
* @return SharpShowField
*/
public function setShowIfEmpty(bool $showIfEmpty = true): SharpShowField
{
return $this;
}

/**
* Create the properties array for the field, using parent::buildArray().
*/
Expand Down
Loading