Jake Vanderwerf
yesterday f4be611c51473359e6d41780f0313c446079e9d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
namespace JVBase\managers\SEO\render\Traits\_Properties;
 
if (!defined('ABSPATH')) {
    exit;
}
trait branchCodeTrait {
    /**
     * @var string A short textual code (also called "store code") that uniquely identifies a place of business. The code is typically assigned by the parentOrganization and used in structured URLs.
     *
     * For example, in the URL http://www.starbucks.co.uk/store-locator/etc/detail/3047 the code "3047" is a branchCode for a particular branch.
     */
    protected string $branchCode;
 
    public function getBranchCode():?string
    {
        return $this->branchCode??null;
    }
    public function setBranchCode(string $branchCode):void
    {
        $this->branchCode = $branchCode;
    }
}