~tsep-dev/tsep/2.x

« back to all changes in this revision

Viewing changes to src/TSEP/Bundle/SearchBundle/Command/ProfileCreateCommand.php

  • Committer: Geoffrey
  • Date: 2011-04-23 21:21:32 UTC
  • mto: This revision was merged to the branch mainline in revision 10.
  • Revision ID: geoffrey@den-pc-20110423212132-4c52oaz43g7f4vxq
refractored class names

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?php
2
 
namespace TsepDev\Bundle\SearchBundle\Command;
 
2
namespace TSEP\Bundle\SearchBundle\Command;
3
3
 
4
 
use TsepDev\Bundle\SearchBundle\Entity\Profile;
 
4
use TSEP\Bundle\SearchBundle\Entity\Profile;
5
5
 
6
6
use Symfony\Component\Console\Output\OutputInterface;
7
7
 
18
18
                parent::configure();
19
19
 
20
20
                $this
21
 
                        ->setName('search:profile:create')
 
21
                        ->setName('tsep:profile:create')
22
22
                        ->addArgument('name', InputArgument::REQUIRED, 'Profile Name')
23
23
                        ->addArgument('start', InputArgument::REQUIRED, 'Start URL')
24
24
                        ->addArgument('regex', InputArgument::REQUIRED, 'Regular Expression')