diff options
Diffstat (limited to 'app/Module/BatchUpdate/BatchUpdateBasePlugin.php')
| -rw-r--r-- | app/Module/BatchUpdate/BatchUpdateBasePlugin.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php index e4d2bb8b7e..d41a1f5384 100644 --- a/app/Module/BatchUpdate/BatchUpdateBasePlugin.php +++ b/app/Module/BatchUpdate/BatchUpdateBasePlugin.php @@ -1,6 +1,4 @@ <?php -namespace Fisharebest\Webtrees\Module\BatchUpdate; - /** * webtrees: online genealogy * Copyright (C) 2015 webtrees development team @@ -15,6 +13,8 @@ namespace Fisharebest\Webtrees\Module\BatchUpdate; * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +namespace Fisharebest\Webtrees\Module\BatchUpdate; + use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Filter; use Fisharebest\Webtrees\GedcomRecord; @@ -30,7 +30,8 @@ use Fisharebest\Webtrees\Module\BatchUpdateModule; * string updateRecord($xref, $gedrec) */ class BatchUpdateBasePlugin { - public $chan = false; // User option; update change record + /** @var bool User option; update change record */ + public $chan = false; /** * Default is to operate on INDI records |
