Browse Source

Added per-file legal boilerplate

Includes PHPDoc license tag in the file-level block with accompanying copyright notice.

Also added an AUTHORS file on the off chance of outside contributions
microsub
J. King 6 years ago
parent
commit
11b2066922
  1. 4
      .php_cs.dist
  2. 4
      AUTHORS
  3. 4
      arsse.php
  4. 4
      lib/AbstractException.php
  5. 4
      lib/Arsse.php
  6. 4
      lib/CLI.php
  7. 4
      lib/Conf.php
  8. 4
      lib/Conf/Exception.php
  9. 4
      lib/Database.php
  10. 4
      lib/Db/AbstractDriver.php
  11. 4
      lib/Db/AbstractResult.php
  12. 4
      lib/Db/AbstractStatement.php
  13. 4
      lib/Db/Driver.php
  14. 4
      lib/Db/Exception.php
  15. 4
      lib/Db/ExceptionInput.php
  16. 4
      lib/Db/ExceptionTimeout.php
  17. 4
      lib/Db/Result.php
  18. 4
      lib/Db/SQLite3/Driver.php
  19. 4
      lib/Db/SQLite3/ExceptionBuilder.php
  20. 4
      lib/Db/SQLite3/Result.php
  21. 4
      lib/Db/SQLite3/Statement.php
  22. 4
      lib/Db/Statement.php
  23. 4
      lib/Db/Transaction.php
  24. 4
      lib/Exception.php
  25. 4
      lib/ExceptionFatal.php
  26. 4
      lib/ExceptionType.php
  27. 4
      lib/Feed.php
  28. 4
      lib/Feed/Exception.php
  29. 4
      lib/Lang.php
  30. 4
      lib/Lang/Exception.php
  31. 4
      lib/Misc/Context.php
  32. 4
      lib/Misc/Date.php
  33. 4
      lib/Misc/Query.php
  34. 4
      lib/Misc/ValueInfo.php
  35. 4
      lib/REST.php
  36. 4
      lib/REST/AbstractHandler.php
  37. 4
      lib/REST/Exception.php
  38. 4
      lib/REST/Exception405.php
  39. 4
      lib/REST/Exception501.php
  40. 4
      lib/REST/Handler.php
  41. 4
      lib/REST/NextCloudNews/V1_2.php
  42. 4
      lib/REST/NextCloudNews/Versions.php
  43. 4
      lib/REST/Request.php
  44. 4
      lib/REST/Response.php
  45. 4
      lib/Service.php
  46. 4
      lib/Service/Curl/Driver.php
  47. 4
      lib/Service/Driver.php
  48. 4
      lib/Service/Forking/Driver.php
  49. 4
      lib/Service/Internal/Driver.php
  50. 4
      lib/User.php
  51. 4
      lib/User/Driver.php
  52. 4
      lib/User/Exception.php
  53. 4
      lib/User/ExceptionAuthz.php
  54. 4
      lib/User/ExceptionNotImplemented.php
  55. 4
      lib/User/Internal/Driver.php
  56. 4
      lib/User/Internal/InternalFunctions.php
  57. 4
      locale/en.php
  58. 4
      sql/SQLite3/0.sql
  59. 4
      tests/Conf/TestConf.php
  60. 4
      tests/Db/SQLite3/Database/TestDatabaseArticleSQLite3.php
  61. 4
      tests/Db/SQLite3/Database/TestDatabaseCleanupSQLite3.php
  62. 4
      tests/Db/SQLite3/Database/TestDatabaseFeedSQLite3.php
  63. 4
      tests/Db/SQLite3/Database/TestDatabaseFolderSQLite3.php
  64. 4
      tests/Db/SQLite3/Database/TestDatabaseMetaSQLite3.php
  65. 4
      tests/Db/SQLite3/Database/TestDatabaseMiscellanySQLite3.php
  66. 4
      tests/Db/SQLite3/Database/TestDatabaseSubscriptionSQLite3.php
  67. 4
      tests/Db/SQLite3/Database/TestDatabaseUserSQLite3.php
  68. 4
      tests/Db/SQLite3/TestDbDriverCreationSQLite3.php
  69. 4
      tests/Db/SQLite3/TestDbDriverSQLite3.php
  70. 4
      tests/Db/SQLite3/TestDbResultSQLite3.php
  71. 4
      tests/Db/SQLite3/TestDbStatementSQLite3.php
  72. 4
      tests/Db/SQLite3/TestDbUpdateSQLite3.php
  73. 4
      tests/Db/TestTransaction.php
  74. 4
      tests/Exception/TestException.php
  75. 4
      tests/Feed/TestFeed.php
  76. 4
      tests/Feed/TestFeedFetching.php
  77. 4
      tests/Lang/TestLang.php
  78. 4
      tests/Lang/TestLangErrors.php
  79. 4
      tests/Lang/testLangComplex.php
  80. 4
      tests/Misc/TestContext.php
  81. 4
      tests/Misc/TestValueInfo.php
  82. 4
      tests/REST/NextCloudNews/TestNCNV1_2.php
  83. 4
      tests/REST/NextCloudNews/TestNCNVersionDiscovery.php
  84. 4
      tests/Service/TestService.php
  85. 4
      tests/User/TestAuthorization.php
  86. 4
      tests/User/TestUserInternalDriver.php
  87. 4
      tests/User/TestUserMockExternal.php
  88. 4
      tests/User/TestUserMockInternal.php
  89. 4
      tests/bootstrap.php
  90. 4
      tests/lib/AbstractTest.php
  91. 4
      tests/lib/Database.php
  92. 4
      tests/lib/Database/DriverSQLite3.php
  93. 4
      tests/lib/Database/SeriesArticle.php
  94. 4
      tests/lib/Database/SeriesCleanup.php
  95. 4
      tests/lib/Database/SeriesFeed.php
  96. 4
      tests/lib/Database/SeriesFolder.php
  97. 4
      tests/lib/Database/SeriesMeta.php
  98. 4
      tests/lib/Database/SeriesMiscellany.php
  99. 4
      tests/lib/Database/SeriesSubscription.php
  100. 4
      tests/lib/Database/SeriesUser.php

4
.php_cs.dist

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;
const BASE = __DIR__.DIRECTORY_SEPARATOR; const BASE = __DIR__.DIRECTORY_SEPARATOR;

4
AUTHORS

@ -0,0 +1,4 @@
Prohect leads
-------------
J. King https://jkingweb.ca/
Dustin Wilson https://dustinwilson.com/

4
arsse.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;
const BASE = __DIR__.DIRECTORY_SEPARATOR; const BASE = __DIR__.DIRECTORY_SEPARATOR;

4
lib/AbstractException.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Arsse.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/CLI.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Conf.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
/** Conf class */ /** Conf class */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Conf/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Conf; namespace JKingWeb\Arsse\Conf;

4
lib/Database.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Db/AbstractDriver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/AbstractResult.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/AbstractStatement.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/ExceptionInput.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/ExceptionTimeout.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/Result.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/SQLite3/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db\SQLite3; namespace JKingWeb\Arsse\Db\SQLite3;

4
lib/Db/SQLite3/ExceptionBuilder.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db\SQLite3; namespace JKingWeb\Arsse\Db\SQLite3;

4
lib/Db/SQLite3/Result.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db\SQLite3; namespace JKingWeb\Arsse\Db\SQLite3;

4
lib/Db/SQLite3/Statement.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db\SQLite3; namespace JKingWeb\Arsse\Db\SQLite3;

4
lib/Db/Statement.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Db/Transaction.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Db; namespace JKingWeb\Arsse\Db;

4
lib/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/ExceptionFatal.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/ExceptionType.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Feed.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Feed/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Feed; namespace JKingWeb\Arsse\Feed;

4
lib/Lang.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Lang/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Lang; namespace JKingWeb\Arsse\Lang;

4
lib/Misc/Context.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Misc; namespace JKingWeb\Arsse\Misc;

4
lib/Misc/Date.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Misc; namespace JKingWeb\Arsse\Misc;

4
lib/Misc/Query.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Misc; namespace JKingWeb\Arsse\Misc;

4
lib/Misc/ValueInfo.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Misc; namespace JKingWeb\Arsse\Misc;

4
lib/REST.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/REST/AbstractHandler.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/Exception405.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/Exception501.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/Handler.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/NextCloudNews/V1_2.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST\NextCloudNews; namespace JKingWeb\Arsse\REST\NextCloudNews;

4
lib/REST/NextCloudNews/Versions.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST\NextCloudNews; namespace JKingWeb\Arsse\REST\NextCloudNews;

4
lib/REST/Request.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/REST/Response.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\REST; namespace JKingWeb\Arsse\REST;

4
lib/Service.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/Service/Curl/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Service\Curl; namespace JKingWeb\Arsse\Service\Curl;

4
lib/Service/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Service; namespace JKingWeb\Arsse\Service;

4
lib/Service/Forking/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Service\Forking; namespace JKingWeb\Arsse\Service\Forking;

4
lib/Service/Internal/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Service\Internal; namespace JKingWeb\Arsse\Service\Internal;

4
lib/User.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
lib/User/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User; namespace JKingWeb\Arsse\User;

4
lib/User/Exception.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User; namespace JKingWeb\Arsse\User;

4
lib/User/ExceptionAuthz.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User; namespace JKingWeb\Arsse\User;

4
lib/User/ExceptionNotImplemented.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User; namespace JKingWeb\Arsse\User;

4
lib/User/Internal/Driver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User\Internal; namespace JKingWeb\Arsse\User\Internal;

4
lib/User/Internal/InternalFunctions.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\User\Internal; namespace JKingWeb\Arsse\User\Internal;

4
locale/en.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
return [ return [
'Driver.Db.SQLite3.Name' => 'SQLite 3', 'Driver.Db.SQLite3.Name' => 'SQLite 3',
'Driver.Service.Curl.Name' => 'HTTP (curl)', 'Driver.Service.Curl.Name' => 'HTTP (curl)',

4
sql/SQLite3/0.sql

@ -1,3 +1,7 @@
-- SPDX-License-Identifier: MIT
-- Copyright 2017 J. King, Dustin Wilson et al.
-- See LICENSE and AUTHORS files for details
-- metadata -- metadata
create table arsse_meta( create table arsse_meta(
key text primary key not null, -- metadata key key text primary key not null, -- metadata key

4
tests/Conf/TestConf.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseArticleSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseCleanupSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseFeedSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseFolderSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseMetaSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseMiscellanySQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseSubscriptionSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/Database/TestDatabaseUserSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/TestDbDriverCreationSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/TestDbDriverSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/TestDbResultSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/TestDbStatementSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/SQLite3/TestDbUpdateSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Db/TestTransaction.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Exception/TestException.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Feed/TestFeed.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Feed/TestFeedFetching.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Lang/TestLang.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Lang/TestLangErrors.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Lang/testLangComplex.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Misc/TestContext.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Misc/TestValueInfo.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/REST/NextCloudNews/TestNCNV1_2.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/REST/NextCloudNews/TestNCNVersionDiscovery.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/Service/TestService.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/User/TestAuthorization.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/User/TestUserInternalDriver.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/User/TestUserMockExternal.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/User/TestUserMockInternal.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/bootstrap.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse; namespace JKingWeb\Arsse;

4
tests/lib/AbstractTest.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test; namespace JKingWeb\Arsse\Test;

4
tests/lib/Database.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test; namespace JKingWeb\Arsse\Test;

4
tests/lib/Database/DriverSQLite3.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesArticle.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesCleanup.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesFeed.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesFolder.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesMeta.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesMiscellany.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesSubscription.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

4
tests/lib/Database/SeriesUser.php

@ -1,4 +1,8 @@
<?php <?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1); declare(strict_types=1);
namespace JKingWeb\Arsse\Test\Database; namespace JKingWeb\Arsse\Test\Database;

Some files were not shown because too many files changed in this diff

Loading…
Cancel
Save