Ouzo\Tools\Model\Template\ClassStub::addTablePrimaryKey PHP Метод

addTablePrimaryKey() публичный Метод

public addTablePrimaryKey ( $primaryKey )
    public function addTablePrimaryKey($primaryKey)
    {
        if (empty($primaryKey)) {
            $value = sprintf("'%s' => '',", 'primaryKey');
            $this->addPlaceholderReplacement("table_primaryKey", $value);
        } else {
            $placeholderPrimaryKey = $primaryKey != 'id' ? $primaryKey : '';
            $this->addTableSetupItem('primaryKey', $placeholderPrimaryKey);
        }
    }