Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Commit

Permalink
Added standard header to all relevant files (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
k00ni committed Aug 29, 2017
1 parent 0f1b3ac commit d69ce92
Show file tree
Hide file tree
Showing 186 changed files with 1,852 additions and 2 deletions.
10 changes: 10 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

PHPCS = ./vendor/bin/phpcs
PHPCBF = ./vendor/bin/phpcbf
SAMI = ./vendor/bin/sami.php
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/.coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

coverage_clover: gen/coverage/clover.xml
json_path: gen/coverage/coveralls-upload.json
service_name: travis-ci
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/.travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

language: php
dist: trusty

Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Store/ARC2.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\ARC2\Store;

use Saft\Rdf\CommonNamespaces;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/ARC2Test.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\ARC2\Test;

use Saft\Addition\ARC2\Store\ARC2;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/bootstrap-travis.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require 'bootstrap.php';

define('IN_TRAVIS', true);
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require_once __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
9 changes: 9 additions & 0 deletions src/Saft/Addition/ARC2/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/test-config-travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

#
# This file contains a list with different configurations for test cases which rely on store.
#
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/ARC2/test-config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

#
# This file contains a list with different configurations for test cases which rely on store.
#
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/ParserEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\Parser;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/ParserFactoryEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\ParserFactory;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/SerializerEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\Serializer;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Data/SerializerFactoryEasyRdf.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data;

use Saft\Data\SerializerFactory;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/ParserEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\ParserEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/ParserFactoryEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\ParserFactoryEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/SerializerEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Test;

use Saft\Addition\EasyRdf\Data\SerializerEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/SerializerFactoryEasyRdfTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\EasyRdf\Data\Test;

use Saft\Addition\EasyRdf\Data\SerializerFactoryEasyRdf;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/EasyRdf/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require_once __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
9 changes: 9 additions & 0 deletions src/Saft/Addition/EasyRdf/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/QueryCache/QueryCache.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\Erfurt\QueryCache;

use Nette\Caching\Cache;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/Test/QueryCacheTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\Erfurt\Test;

use Saft\Rdf\AnyPatternImpl;
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/Test/bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

require __DIR__ .'/../vendor/autoload.php';

error_reporting(E_ALL);
9 changes: 9 additions & 0 deletions src/Saft/Addition/Erfurt/phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/Erfurt/test-config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
#
# This file is part of Saft.
#
# (c) Konrad Abicht <[email protected]>
# (c) Natanael Arndt <[email protected]>
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#

erfurtConfig: &erfurtConfig
cache:
backend:
Expand Down
10 changes: 10 additions & 0 deletions src/Saft/Addition/HttpStore/Store/Http.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
<?php

/*
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

namespace Saft\Addition\HttpStore\Store;

use Curl\Curl;
Expand Down
Loading

0 comments on commit d69ce92

Please sign in to comment.