• File: HasName.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/give/src/Framework/FieldsAPI/Concerns/HasName.php
  • Date Modified: 07/08/2022 3:27 AM
  • File size: 242 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

namespace Give\Framework\FieldsAPI\Concerns;

trait HasName
{

    /** @var string */
    protected $name;

    /**
     * Get the field’s name.
     */
    public function getName(): string
    {
        return $this->name;
    }
}