Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
k-samuel committed May 17, 2019
1 parent 73fca7d commit 5dec43d
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 4 deletions.
23 changes: 21 additions & 2 deletions classes/Dvelum/App/Backend/Designer/Code.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,27 @@
<?php

/**
* DVelum project https://github.com/dvelum/dvelum
* Copyright (C) 2011-2019 Kirill Yegorov
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);

namespace Dvelum\App\Backend\Designer;
use Dvelum\Config;

class Backend_Designer_Code
class Code
{
/**
* Get controller url
Expand Down
23 changes: 22 additions & 1 deletion classes/Dvelum/App/Backend/Designer/Import.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,30 @@
<?php
/**
* DVelum project https://github.com/dvelum/dvelum
* Copyright (C) 2011-2019 Kirill Yegorov
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);

namespace Dvelum\App\Backend\Designer;

use Dvelum\Orm;
use Dvelum\Orm\Record\Builder;
use Dvelum\Db\Adapter;

class Backend_Designer_Import
class Import
{
/**
*
Expand Down
1 change: 0 additions & 1 deletion classes/Ext/Property/Form/Labelable.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ trait Ext_Property_Form_Labelable
public $activeError = Ext_Property::String;
public $activeErrorsTpl = Ext_Property::Object;
public $afterBodyEl = Ext_Property::String;
public $afterLabelTextTpl = Ext_Property::Object;
public $afterLabelTpl = Ext_Property::Object;
public $afterSubTpl = Ext_Property::Object;
public $autoFitErrors = Ext_Property::Boolean;
Expand Down

0 comments on commit 5dec43d

Please sign in to comment.