Skip to content

Commit

Permalink
rename namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tflori committed Jul 3, 2017
1 parent 23e564e commit 50818ec
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"autoload": {
"psr-4": {
"Ulrichsg\\Getopt\\": "src"
"GetOpt\\": "src"
}
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Argument.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class Argument
{
Expand Down
2 changes: 1 addition & 1 deletion src/CommandLineParser.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

/**
* Parses command line arguments according to a list of allowed options.
Expand Down
2 changes: 1 addition & 1 deletion src/Getopt.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

/**
* Getopt.PHP allows for easy processing of command-line arguments.
Expand Down
2 changes: 1 addition & 1 deletion src/Option.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

/**
* Represents an option that Getopt accepts.
Expand Down
2 changes: 1 addition & 1 deletion src/OptionParser.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

/**
* Converts user-given option specifications into Option objects.
Expand Down
2 changes: 1 addition & 1 deletion test/ArgumentTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class ArgumentTest extends \PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion test/CommandLineParserTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class CommandLineParserTest extends \PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion test/GetoptTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class GetoptTest extends \PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion test/OptionParserTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class OptionParserTest extends \PHPUnit_Framework_TestCase
{
Expand Down
2 changes: 1 addition & 1 deletion test/OptionTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Ulrichsg\Getopt;
namespace GetOpt;

class OptionTest extends \PHPUnit_Framework_TestCase
{
Expand Down

0 comments on commit 50818ec

Please sign in to comment.