Skip to content

Commit 1c46fc4

Browse files
committed
Query package: complete author information
1 parent 508efb9 commit 1c46fc4

21 files changed

+21
-21
lines changed

src/Query/AST/ArgumentListNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Represents a list of (method) arguments
99
*
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/AST/ArrayListNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @package Kirby Query
9-
* @author Roman Steiner <>,
9+
* @author Roman Steiner <roman@toastlab.ch>,
1010
* Nico Hoffmann <nico@getkirby.com>
1111
* @link https://getkirby.com
1212
* @copyright Bastian Allgeier

src/Query/AST/ClosureNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @package Kirby Query
9-
* @author Roman Steiner <>,
9+
* @author Roman Steiner <roman@toastlab.ch>,
1010
* Nico Hoffmann <nico@getkirby.com>
1111
* @link https://getkirby.com
1212
* @copyright Bastian Allgeier

src/Query/AST/CoalesceNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @package Kirby Query
9-
* @author Roman Steiner <>,
9+
* @author Roman Steiner <roman@toastlab.ch>,
1010
* Nico Hoffmann <nico@getkirby.com>
1111
* @link https://getkirby.com
1212
* @copyright Bastian Allgeier

src/Query/AST/GlobalFunctionNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @package Kirby Query
9-
* @author Roman Steiner <>,
9+
* @author Roman Steiner <roman@toastlab.ch>,
1010
* Nico Hoffmann <nico@getkirby.com>
1111
* @link https://getkirby.com
1212
* @copyright Bastian Allgeier

src/Query/AST/LiteralNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Represents literal values (e.g. string, int, bool)
99
*
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/AST/MemberAccessNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Represents the access (e.g. method call) on a node
99
*
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/AST/Node.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Basic query node representation
99
*
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/AST/TernaryNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* and another value for when the condition is false
1111
*
1212
* @package Kirby Query
13-
* @author Roman Steiner <>
13+
* @author Roman Steiner <roman@toastlab.ch>
1414
* @link https://getkirby.com
1515
* @copyright Bastian Allgeier
1616
* @license https://opensource.org/licenses/MIT

src/Query/AST/VariableNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Represents a variable (e.g. an object)
99
*
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/Parser/Parser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* an abstract syntax tree (AST) of matching nodes
2222
*
2323
* @package Kirby Query
24-
* @author Roman Steiner <>,
24+
* @author Roman Steiner <roman@toastlab.ch>,
2525
* Nico Hoffmann <nico@getkirby.com>
2626
* @link https://getkirby.com
2727
* @copyright Bastian Allgeier

src/Query/Parser/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* within a query
88
*
99
* @package Kirby Query
10-
* @author Roman Steiner <>,
10+
* @author Roman Steiner <roman@toastlab.ch>,
1111
* Nico Hoffmann <nico@getkirby.com>
1212
* @link https://getkirby.com
1313
* @copyright Bastian Allgeier

src/Query/Parser/TokenType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @package Kirby Query
7-
* @author Roman Steiner <>,
7+
* @author Roman Steiner <roman@toastlab.ch>,
88
* Nico Hoffmann <nico@getkirby.com>
99
* @link https://getkirby.com
1010
* @copyright Bastian Allgeier

src/Query/Parser/Tokenizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Parses a query string into its individual tokens
1010
*
1111
* @package Kirby Query
12-
* @author Roman Steiner <>,
12+
* @author Roman Steiner <roman@toastlab.ch>,
1313
* Nico Hoffmann <nico@getkirby.com>
1414
* @link https://getkirby.com
1515
* @copyright Bastian Allgeier

src/Query/Runners/Interpreted.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Runner that caches the AST in memory
1212
*
1313
* @package Kirby Query
14-
* @author Roman Steiner <>
14+
* @author Roman Steiner <roman@toastlab.ch>
1515
* @link https://getkirby.com
1616
* @copyright Bastian Allgeier
1717
* @license https://opensource.org/licenses/MIT

src/Query/Runners/Runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
/**
1010
* @package Kirby Query
11-
* @author Roman Steiner <>,
11+
* @author Roman Steiner <roman@toastlab.ch>,
1212
* Nico Hoffmann <nico@getkirby.com>
1313
* @link https://getkirby.com
1414
* @copyright Bastian Allgeier

src/Query/Runners/Runtime.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* This helps to keep the PHP code representation small
1111
*
1212
* @package Kirby Query
13-
* @author Roman Steiner <>
13+
* @author Roman Steiner <roman@toastlab.ch>
1414
* @link https://getkirby.com
1515
* @copyright Bastian Allgeier
1616
* @license https://opensource.org/licenses/MIT

src/Query/Runners/Transpiled.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Runner that caches the AST as a PHP file
1616
*
1717
* @package Kirby Query
18-
* @author Roman Steiner <>,
18+
* @author Roman Steiner <roman@toastlab.ch>,
1919
* Nico Hoffmann <nico@getkirby.com>
2020
* @link https://getkirby.com
2121
* @copyright Bastian Allgeier

src/Query/Visitors/Interpreter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Interprets and directly executes a query AST
1212
*
1313
* @package Kirby Query
14-
* @author Roman Steiner <>,
14+
* @author Roman Steiner <roman@toastlab.ch>,
1515
* Nico Hoffmann <nico@getkirby.com>
1616
* @link https://getkirby.com
1717
* @copyright Bastian Allgeier

src/Query/Visitors/Transpiler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Generates PHP code representation for query AST
1111
*
1212
* @package Kirby Query
13-
* @author Roman Steiner <>,
13+
* @author Roman Steiner <roman@toastlab.ch>,
1414
* Nico Hoffmann <nico@getkirby.com>
1515
* @link https://getkirby.com
1616
* @copyright Bastian Allgeier

src/Query/Visitors/Visitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/**
88
* @package Kirby Query
9-
* @author Roman Steiner <>,
9+
* @author Roman Steiner <roman@toastlab.ch>,
1010
* Nico Hoffmann <nico@getkirby.com>
1111
* @link https://getkirby.com
1212
* @copyright Bastian Allgeier

0 commit comments

Comments
 (0)