Skip to content

Commit 667cf44

Browse files
committed
tidy up
1 parent c8f9ba3 commit 667cf44

File tree

13 files changed

+15
-15
lines changed

13 files changed

+15
-15
lines changed

examples/converter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
use Ixno\WebCrawler\Converter\PregReplace;
3232
use Ixno\WebCrawler\Converter\Trim;
3333
use Ixno\WebCrawler\Output\Field;
34-
use Ixno\WebCrawler\Query\Text;
35-
use Ixno\WebCrawler\Query\XpathTextnode;
34+
use Ixno\WebCrawler\Value\Text;
35+
use Ixno\WebCrawler\Value\XpathTextnode;
3636
use Ixno\WebCrawler\Source\File;
3737

3838
$file = dirname(__FILE__).'/converter.html';

examples/group.php

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

3030
use Ixno\WebCrawler\Output\Field;
3131
use Ixno\WebCrawler\Output\Group;
32-
use Ixno\WebCrawler\Query\XpathTextnode;
32+
use Ixno\WebCrawler\Value\XpathTextnode;
3333
use Ixno\WebCrawler\Source\Url;
3434

3535
$url = 'https://en.wikipedia.org/wiki/Pirates_of_the_Caribbean:_The_Curse_of_the_Black_Pearl';

examples/index.php

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

77
use Ixno\WebCrawler\Output\Field;
88
use Ixno\WebCrawler\Output\Group;
9-
use Ixno\WebCrawler\Query\XpathTextnode;
9+
use Ixno\WebCrawler\Value\XpathTextnode;
1010
use Ixno\WebCrawler\Source\XpathSections;
1111
use Ixno\WebCrawler\Source\File;
1212

examples/section.php

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

3030
use Ixno\WebCrawler\Output\Field;
3131
use Ixno\WebCrawler\Output\Group;
32-
use Ixno\WebCrawler\Query\XpathTextnode;
32+
use Ixno\WebCrawler\Value\XpathTextnode;
3333
use Ixno\WebCrawler\Source\Url;
3434
use Ixno\WebCrawler\Source\XpathSection;
3535

examples/sections.php

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

3030
use Ixno\WebCrawler\Output\Field;
3131
use Ixno\WebCrawler\Output\Group;
32-
use Ixno\WebCrawler\Query\XpathTextnode;
32+
use Ixno\WebCrawler\Value\XpathTextnode;
3333
use Ixno\WebCrawler\Source\Url;
3434
use Ixno\WebCrawler\Source\XpathSections;
3535

examples/simple.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
include dirname(__FILE__).'/../autoload.php';
2929

3030
use Ixno\WebCrawler\Output\Field;
31-
use Ixno\WebCrawler\Query\Text;
32-
use Ixno\WebCrawler\Query\XpathTextnode;
31+
use Ixno\WebCrawler\Value\Text;
32+
use Ixno\WebCrawler\Value\XpathTextnode;
3333
use Ixno\WebCrawler\Source\Url;
3434

3535
$url = 'https://en.wikipedia.org/wiki/Pirates_of_the_Caribbean:_The_Curse_of_the_Black_Pearl';

examples/structure.php

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

3030
use Ixno\WebCrawler\Output\Field;
3131
use Ixno\WebCrawler\Output\Group;
32-
use Ixno\WebCrawler\Query\XpathTextnode;
32+
use Ixno\WebCrawler\Value\XpathTextnode;
3333
use Ixno\WebCrawler\Source\Url;
3434

3535
$url = 'https://en.wikipedia.org/wiki/Pirates_of_the_Caribbean:_The_Curse_of_the_Black_Pearl';

lib/Ixno/WebCrawler/Output/Output.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
namespace Ixno\WebCrawler\Output;
2727

2828
use Ixno\WebCrawler\Converter\Converter;
29-
use Ixno\WebCrawler\Query\Value;
29+
use Ixno\WebCrawler\Value\Value;
3030
use Ixno\WebCrawler\Source\Source;
3131

3232
use DOMXPath;

lib/Ixno/WebCrawler/Source/Source.php

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

3232
use Ixno\WebCrawler\Output\Field;
3333
use Ixno\WebCrawler\Output\Output;
34-
use Ixno\WebCrawler\Query\Value;
34+
use Ixno\WebCrawler\Value\Value;
3535

3636
abstract class Source
3737
{

lib/Ixno/WebCrawler/Value/Text.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* SOFTWARE.
2424
*/
2525

26-
namespace Ixno\WebCrawler\Query;
26+
namespace Ixno\WebCrawler\Value;
2727

2828
use DOMXPath;
2929
use DOMNode;

lib/Ixno/WebCrawler/Value/Value.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* SOFTWARE.
2424
*/
2525

26-
namespace Ixno\WebCrawler\Query;
26+
namespace Ixno\WebCrawler\Value;
2727

2828
use Ixno\WebCrawler\Converter\Converter;
2929
use Ixno\WebCrawler\Output\Output;

lib/Ixno/WebCrawler/Value/XpathTextnode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* SOFTWARE.
2424
*/
2525

26-
namespace Ixno\WebCrawler\Query;
26+
namespace Ixno\WebCrawler\Value;
2727

2828
use DOMXPath;
2929
use DOMNode;

lib/Ixno/WebCrawler/Value/XpathTextnodes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* SOFTWARE.
2424
*/
2525

26-
namespace Ixno\WebCrawler\Query;
26+
namespace Ixno\WebCrawler\Value;
2727

2828
use DOMXPath;
2929
use DOMNode;

0 commit comments

Comments
 (0)