Skip to content

Commit d0c701b

Browse files
committed
Renamed project to "gitlab-ce-ldap-sync" as it'll definitely need a user sync function as well as group sync function.
Also did you notice how I misspelt "group" as "grop" everywhere? Ha ha! What a plonker boy.
1 parent 18af001 commit d0c701b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

bin/console

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ define("CONFIG_FILE_DIST_PATH", sprintf("%s/%s", ROOT_DIR, CONFIG_FILE_DIST_NAME
1313

1414
use Symfony\Component\Console\Application;
1515

16-
use AdamReece\GitlabCeLdapGroupSync\LdapGroupSyncCommand;
16+
use AdamReece\GitlabCeLdapSync\LdapSyncCommand;
1717

1818
$app = new Application();
19-
$app->add(new LdapGroupSyncCommand());
19+
$app->add(new LdapSyncCommand());
2020
$app->run();
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace AdamReece\GitlabCeLdapGroupSync;
3+
namespace AdamReece\GitlabCeLdapSync;
44

55
use Symfony\Component\Console\Input\InputArgument;
66
use Symfony\Component\Console\Input\InputInterface;
@@ -13,7 +13,7 @@
1313

1414
use Cocur\Slugify\Slugify;
1515

16-
class LdapGroupSyncCommand extends \Symfony\Component\Console\Command\Command
16+
class LdapSyncCommand extends \Symfony\Component\Console\Command\Command
1717
{
1818
private $logger = null;
1919
private $dryRun = false;

0 commit comments

Comments
 (0)