Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
give
/
src
/
Framework
/
FieldsAPI
/
Concerns
:
HasHelpText.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Give\Framework\FieldsAPI\Concerns; trait HasHelpText { /** @var string */ protected $helpText; /** * @param string $helpText * * @return $this */ public function helpText($helpText) { $this->helpText = $helpText; return $this; } public function getHelpText() { return $this->helpText; } }