Updated some copyright notices [skip ci]

This commit is contained in:
James Cole
2016-12-23 07:02:45 +01:00
parent 8fb9577660
commit bf0744e03a
52 changed files with 338 additions and 126 deletions

View File

@@ -70,7 +70,9 @@ class Import extends Command
$handler = new CommandHandler($this); $handler = new CommandHandler($this);
$monolog->pushHandler($handler); $monolog->pushHandler($handler);
$result = ImportProcedure::runImport($job); $importProcedure = new ImportProcedure;
$result = $importProcedure->runImport($job);
/** /**

View File

@@ -53,9 +53,9 @@ class LoginController extends Controller
/** /**
* Handle a login request to the application. * Handle a login request to the application.
* *
* @param \Illuminate\Http\Request $request * @param Request $request
* *
* @return \Illuminate\Http\Response * @return \Illuminate\Http\RedirectResponse|\Illuminate\Http\Response
*/ */
public function login(Request $request) public function login(Request $request)
{ {

View File

@@ -26,8 +26,8 @@ use Illuminate\Support\Facades\Password;
* *
* @package FireflyIII\Http\Controllers\Auth * @package FireflyIII\Http\Controllers\Auth
* @method getEmailSubject() * @method getEmailSubject()
* @method getSendResetLinkEmailSuccessResponse() * @method getSendResetLinkEmailSuccessResponse(string $response)
* @method getSendResetLinkEmailFailureResponse() * @method getSendResetLinkEmailFailureResponse(string $response)
*/ */
class PasswordController extends Controller class PasswordController extends Controller
{ {

View File

@@ -15,7 +15,6 @@ namespace FireflyIII\Http\Controllers\Report;
use Carbon\Carbon; use Carbon\Carbon;
use FireflyIII\Helpers\Report\ReportHelperInterface;
use FireflyIII\Http\Controllers\Controller; use FireflyIII\Http\Controllers\Controller;
use FireflyIII\Models\Category; use FireflyIII\Models\Category;
use FireflyIII\Repositories\Category\CategoryRepositoryInterface; use FireflyIII\Repositories\Category\CategoryRepositoryInterface;

View File

@@ -10,13 +10,6 @@
*/ */
declare(strict_types = 1); declare(strict_types = 1);
/**
* RuleGroupFormRequest.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Http\Requests; namespace FireflyIII\Http\Requests;

View File

@@ -10,13 +10,6 @@
*/ */
declare(strict_types = 1); declare(strict_types = 1);
/**
* RuleAction.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Models; namespace FireflyIII\Models;

View File

@@ -153,11 +153,12 @@ class UserRepository implements UserRepositoryInterface
* @param User $user * @param User $user
* @param string $password * @param string $password
* *
* @return mixed * @return bool
*/ */
public function changePassword(User $user, string $password) public function changePassword(User $user, string $password): bool
{ {
$user->password = bcrypt($password); $user->password = bcrypt($password);
$user->save(); $user->save();
return true;
} }
} }

View File

@@ -10,13 +10,6 @@
*/ */
declare(strict_types = 1); declare(strict_types = 1);
/**
* ActionFactory.php
* Copyright (C) 2016 Robert Horlings
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace FireflyIII\Rules\Factory; namespace FireflyIII\Rules\Factory;

View File

@@ -11,16 +11,6 @@
declare(strict_types = 1); declare(strict_types = 1);
/**
* upgrade.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
return [ return [
'text' => [ 'text' => [
'3.7' => 'Because of the upgrade to Laravel 5.2, several manual changes must be made to your Firefly III installation. ' . '3.7' => 'Because of the upgrade to Laravel 5.2, several manual changes must be made to your Firefly III installation. ' .

View File

@@ -11,7 +11,6 @@
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/** /**
* Class ExpandTransactionsTable * Class ExpandTransactionsTable

View File

@@ -11,7 +11,7 @@
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/** /**
* Class ChangesForV410 * Class ChangesForV410

View File

@@ -11,7 +11,6 @@
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
/** /**
* Class ChangesForV420 * Class ChangesForV420

View File

@@ -1,6 +1,5 @@
<?php <?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Migrations\Migration;

View File

@@ -44,12 +44,14 @@ class TestDataSeeder extends Seeder
if (is_array($file)) { if (is_array($file)) {
// run the file: // run the file:
TestData::run($file); TestData::run($file);
return; return;
} }
Log::error('No valid data found (' . $fileName . ') for environment ' . $env); Log::error(sprintf('No valid data found (%s) for environment %s', $fileName, $env));
return; return;
} }
Log::info('No seed file (' . $fileName . ') for environment ' . $env); Log::error(sprintf('No seed file (%s) for environment %s', $fileName, $env));
} }
} }

View File

@@ -1,3 +1,13 @@
/*
* firefly.css
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
#daterange { #daterange {
cursor: pointer; cursor: pointer;
} }

View File

@@ -3,19 +3,14 @@
* index.php * index.php
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
declare(strict_types = 1); declare(strict_types = 1);
/**
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @author Taylor Otwell <taylorotwell@gmail.com>
*/
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Register The Auto Loader | Register The Auto Loader

View File

@@ -1,3 +1,13 @@
/*
* show.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
/* global comboChart, billID */ /* global comboChart, billID */
$(function () { $(function () {

View File

@@ -1,3 +1,13 @@
/*
* index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
function drawSpentBar() { function drawSpentBar() {
"use strict"; "use strict";
if ($('.spentBar').length > 0) { if ($('.spentBar').length > 0) {

View File

@@ -1,3 +1,13 @@
/*
* show.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,4 +1,13 @@
/* globals $, categoryID, columnChart, categoryDate */ /*
* index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";
}); });

View File

@@ -1,3 +1,13 @@
/*
* show-by-date.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";
columnChart(specific, 'period-specific-period'); columnChart(specific, 'period-specific-period');

View File

@@ -1,3 +1,13 @@
/*
* show.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";
columnChart(all, 'all'); columnChart(all, 'all');

View File

@@ -1,3 +1,13 @@
/*
* charts.defaults.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
var defaultChartOptions = { var defaultChartOptions = {
scales: { scales: {
xAxes: [ xAxes: [

View File

@@ -2,12 +2,12 @@
* charts.js * charts.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals $, Chart, currencySymbol,mon_decimal_point ,accounting, mon_thousands_sep, frac_digits, noDataForChart */
var allCharts = {}; var allCharts = {};
/* /*
@@ -81,6 +81,58 @@ function lineChart(URI, container) {
drawAChart(URI, container, chartType, options, colorData); drawAChart(URI, container, chartType, options, colorData);
} }
/**
* Function to draw a chart with double Y Axes and stacked columns.
*
* @param URI
* @param container
*/
function doubleYChart(URI, container) {
"use strict";
var colorData = true;
var options = defaultChartOptions;
options.scales.yAxes = [
// y axis 0:
{
display: true,
ticks: {
callback: function (tickValue, index, ticks) {
"use strict";
return accounting.formatMoney(tickValue);
},
beginAtZero: true
},
position: "left",
"id": "y-axis-0"
},
// and y axis 1:
{
display: true,
ticks: {
callback: function (tickValue, index, ticks) {
"use strict";
return accounting.formatMoney(tickValue);
},
beginAtZero: true
},
position: "right",
"id": "y-axis-1"
}
];
options.stacked = true;
options.scales.xAxes[0].stacked = true;
console.log(options);
var chartType = 'line';
drawAChart(URI, container, chartType, options, colorData);
}
/** /**
* *
* @param URI * @param URI
@@ -107,7 +159,6 @@ function stackedColumnChart(URI, container) {
var colorData = true; var colorData = true;
var options = defaultChartOptions; var options = defaultChartOptions;
options.stacked = true; options.stacked = true;
options.scales.xAxes[0].stacked = true; options.scales.xAxes[0].stacked = true;

View File

@@ -1,11 +1,11 @@
/* globals token, jobKey */
/* /*
* index.js * index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
var intervalId = 0; var intervalId = 0;

View File

@@ -1,4 +1,13 @@
/* globals token, dateRangeConfig, $, */ /*
* firefly.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,3 +1,13 @@
/*
* guest.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,3 +1,13 @@
/*
* help.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";
$('#help').click(showHelp); $('#help').click(showHelp);

View File

@@ -2,11 +2,11 @@
* status.js * status.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals $, jobImportUrl, jobStartUrl, token, langImportMultiError, langImportSingleError, langImportFatalError, langImportTimeOutError */
var startedImport = false; var startedImport = false;
var startInterval = 2000; var startInterval = 2000;

View File

@@ -1,4 +1,12 @@
/* globals $, columnChart,showTour, Tour, google, pieChart, stackedColumnChart, billCount */ /*
* index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -2,13 +2,12 @@
* index.js * index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals $, lineChart, token, piggyBankID */
// Return a helper with preserved width of cells
var fixHelper = function (e, tr) { var fixHelper = function (e, tr) {
"use strict"; "use strict";
var $originals = tr.children(); var $originals = tr.children();

View File

@@ -2,12 +2,12 @@
* show.js * show.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals $, lineChart, piggyBankID */
$(function () { $(function () {
"use strict"; "use strict";
if (typeof(lineChart) === 'function' && typeof(piggyBankID) !== 'undefined') { if (typeof(lineChart) === 'function' && typeof(piggyBankID) !== 'undefined') {

View File

@@ -2,12 +2,12 @@
* all.js * all.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals hideable */
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,10 +1,11 @@
/* globals startDate, showOnlyTop, showFullList, endDate, expenseReportUri, accountIds, incExpReportUri,accountReportUri, incomeReportUri */
/* /*
* all.js * all.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
$(function () { $(function () {

View File

@@ -1,5 +1,12 @@
/* globals google, categoryReportUri, budgetReportUri, balanceReportUri */ /*
* month.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,3 +1,13 @@
/*
* multi-year.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";
drawChart(); drawChart();

View File

@@ -1,4 +1,12 @@
/* globals google, accountIds, budgetPeriodReportUri, categoryPeriodReportUri */ /*
* year.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,5 +1,12 @@
/* globals google, startDate ,reportURL, endDate , reportType ,accountIds , picker:true, minDate, year, month, columnChart, lineChart, stackedColumnChart */ /*
* index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -2,8 +2,10 @@
* create-edit.js * create-edit.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
var triggerCount = 0; var triggerCount = 0;

View File

@@ -1,14 +1,13 @@
/* global $, addNewTrigger, addNewAction, actionCount, triggerCount */
/* /*
* edit.js * create.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
// make a line.
$(function () { $(function () {
"use strict"; "use strict";
console.log("create"); console.log("create");

View File

@@ -2,8 +2,10 @@
* edit.js * edit.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
$(function () { $(function () {

View File

@@ -1,13 +1,13 @@
/* global comboChart,token, billID */
/* /*
* index.js * index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
// Return a helper with preserved width of cells
var fixHelper = function (e, tr) { var fixHelper = function (e, tr) {
"use strict"; "use strict";
var $originals = tr.children(); var $originals = tr.children();

View File

@@ -2,12 +2,12 @@
* from-store.js * from-store.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals globalSum */
var destAccounts = {}; var destAccounts = {};
var srcAccounts = {}; var srcAccounts = {};
var categories = {}; var categories = {};

View File

@@ -1,4 +1,13 @@
/* globals zoomLevel, token, google, latitude, longitude, doPlaceMarker */ /*
* create.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,4 +1,13 @@
/* globals zoomLevel, token, google, latitude, longitude, doPlaceMarker */ /*
* edit.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -1,4 +1,13 @@
/* globals zoomLevel, token, google, latitude, longitude, doPlaceMarker */ /*
* index.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(function () { $(function () {
"use strict"; "use strict";

View File

@@ -2,10 +2,12 @@
* create-edit.js * create-edit.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals what:true, $, doSwitch, txt, middleCrumbName, title,button, middleCrumbUrl, piggiesLength, breadcrumbs */
$(document).ready(function () { $(document).ready(function () {
"use strict"; "use strict";

View File

@@ -2,11 +2,12 @@
* create.js * create.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals what:true, $, doSwitch, txt, middleCrumbName, title,button, middleCrumbUrl, piggiesLength, breadcrumbs */
$(document).ready(function () { $(document).ready(function () {
"use strict"; "use strict";

View File

@@ -2,11 +2,12 @@
* edit.js * edit.js
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
/* globals $ */
$(document).ready(function () { $(document).ready(function () {
"use strict"; "use strict";
// no special JS for edit transaction. // no special JS for edit transaction.

View File

@@ -1,4 +1,12 @@
/* globals $, edit_selected_txt, delete_selected_txt */ /*
* list.js
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
$(document).ready(function () { $(document).ready(function () {
"use strict"; "use strict";

View File

@@ -3,9 +3,12 @@
* api.php * api.php
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
declare(strict_types = 1); declare(strict_types = 1);
use Illuminate\Http\Request; use Illuminate\Http\Request;

View File

@@ -3,9 +3,12 @@
* console.php * console.php
* Copyright (C) 2016 thegrumpydictator@gmail.com * Copyright (C) 2016 thegrumpydictator@gmail.com
* *
* This software may be modified and distributed under the terms * This software may be modified and distributed under the terms of the
* of the MIT license. See the LICENSE file for details. * Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/ */
declare(strict_types = 1); declare(strict_types = 1);
/* /*