@@ -77,15 +77,15 @@ |
||
77 | 77 | * @return boolean |
78 | 78 | */ |
79 | 79 | public function allowsRecursion() { |
80 | - return $this->recursion_available; |
|
80 | + return $this->recursion_available; |
|
81 | 81 | } |
82 | 82 | |
83 | - /** |
|
84 | - * Check if the resolver knows about a domain |
|
85 | - * |
|
86 | - * @param string $domain the domain to check for |
|
87 | - * @return boolean true if the resolver holds info about $domain |
|
88 | - */ |
|
83 | + /** |
|
84 | + * Check if the resolver knows about a domain |
|
85 | + * |
|
86 | + * @param string $domain the domain to check for |
|
87 | + * @return boolean true if the resolver holds info about $domain |
|
88 | + */ |
|
89 | 89 | public function isAuthority($domain) { |
90 | 90 | return false; |
91 | 91 | } |
@@ -35,7 +35,7 @@ |
||
35 | 35 | public function allowsRecursion() { |
36 | 36 | foreach ($this->resolvers as $resolver) { |
37 | 37 | if ($resolver->allowsRecursion()) { |
38 | - return true; |
|
38 | + return true; |
|
39 | 39 | } |
40 | 40 | } |
41 | 41 | } |
@@ -107,7 +107,7 @@ |
||
107 | 107 | return $this->recursion_available; |
108 | 108 | } |
109 | 109 | |
110 | - /* |
|
110 | + /* |
|
111 | 111 | * Check if the resolver knows about a domain |
112 | 112 | * |
113 | 113 | * @param string $domain the domain to check for |