77 * one string into another.
88 *
99 * Originally created by Raymond Hill (https://github.com/gorhill/PHP-FineDiff), brought up
10- * to date by Cog Powered (https://github.com/cogpowered /FineDiff).
10+ * to date by Cog Powered (https://github.com/acedude /FineDiff).
1111 *
1212 * @copyright Copyright 2011 (c) Raymond Hill (http://raymondhill.net/blog/?p=441)
13- * @copyright Copyright 2013 (c) Robert Crowe (http://cogpowered .com)
14- * @link https://github.com/cogpowered /FineDiff
13+ * @copyright Copyright 2013 (c) Robert Crowe (http://acedude .com)
14+ * @link https://github.com/acedude /FineDiff
1515 * @version 0.0.1
1616 * @license MIT License (http://www.opensource.org/licenses/mit-license.php)
1717 */
1818
19- namespace cogpowered \FineDiff ;
19+ namespace acedude \FineDiff ;
2020
21- use cogpowered \FineDiff \Granularity \GranularityInterface ;
22- use cogpowered \FineDiff \Render \RendererInterface ;
23- use cogpowered \FineDiff \Parser \ParserInterface ;
24- use cogpowered \FineDiff \Granularity \Character ;
25- use cogpowered \FineDiff \Render \Html ;
26- use cogpowered \FineDiff \Parser \Parser ;
21+ use acedude \FineDiff \Granularity \GranularityInterface ;
22+ use acedude \FineDiff \Render \RendererInterface ;
23+ use acedude \FineDiff \Parser \ParserInterface ;
24+ use acedude \FineDiff \Granularity \Character ;
25+ use acedude \FineDiff \Render \Html ;
26+ use acedude \FineDiff \Parser \Parser ;
2727
2828/**
2929 * Diff class.
3030 */
3131class Diff
3232{
3333 /**
34- * @var cogpowered \FineDiff\Granularity\GranularityInterface
34+ * @var acedude \FineDiff\Granularity\GranularityInterface
3535 */
3636 protected $ granularity ;
3737
3838 /**
39- * @var cogpowered \FineDiff\Render\RendererInterface
39+ * @var acedude \FineDiff\Render\RendererInterface
4040 */
4141 protected $ renderer ;
4242
4343 /**
44- * @var cogpowered \FineDiff\Parser\ParserInterface
44+ * @var acedude \FineDiff\Parser\ParserInterface
4545 */
4646 protected $ parser ;
4747
4848 /**
4949 * Instantiate a new instance of Diff.
5050 *
51- * @param cogpowered \FineDiff\Granularity\GranularityInterface $granularity Level of diff.
52- * @param cogpowered \FineDiff\Render\RenderInterface $renderer Diff renderer.
53- * @param cogpowered \FineDiff\Parser\ParserInterface $parser Parser used to generate opcodes.
51+ * @param acedude \FineDiff\Granularity\GranularityInterface $granularity Level of diff.
52+ * @param acedude \FineDiff\Render\RenderInterface $renderer Diff renderer.
53+ * @param acedude \FineDiff\Parser\ParserInterface $parser Parser used to generate opcodes.
5454 *
55- * @throws cogpowered \FineDiff\Exceptions\GranularityCountException
56- * @throws cogpowered \FineDiff\Exceptions\OperationException
55+ * @throws acedude \FineDiff\Exceptions\GranularityCountException
56+ * @throws acedude \FineDiff\Exceptions\OperationException
5757 */
5858 public function __construct (GranularityInterface $ granularity = null , RendererInterface $ renderer = null , ParserInterface $ parser = null )
5959 {
@@ -72,7 +72,7 @@ public function __construct(GranularityInterface $granularity = null, RendererIn
7272 /**
7373 * Returns the granularity object used by the parser.
7474 *
75- * @return @cogpowered \FineDiff\Granularity\GranularityInterface
75+ * @return @acedude \FineDiff\Granularity\GranularityInterface
7676 */
7777 public function getGranularity ()
7878 {
@@ -82,7 +82,7 @@ public function getGranularity()
8282 /**
8383 * Set the granularity level of the parser.
8484 *
85- * @param cogpowered \FineDiff\Granularity\GranularityInterface $granularity
85+ * @param acedude \FineDiff\Granularity\GranularityInterface $granularity
8686 * @return void
8787 */
8888 public function setGranularity (GranularityInterface $ granularity )
@@ -93,7 +93,7 @@ public function setGranularity(GranularityInterface $granularity)
9393 /**
9494 * Get the render.
9595 *
96- * @return cogpowered \FineDiff\Render\RendererInterface
96+ * @return acedude \FineDiff\Render\RendererInterface
9797 */
9898 public function getRenderer ()
9999 {
@@ -103,7 +103,7 @@ public function getRenderer()
103103 /**
104104 * Set the renderer.
105105 *
106- * @param cogpowered \FineDiff\Render\RendererInterface $renderer
106+ * @param acedude \FineDiff\Render\RendererInterface $renderer
107107 * @return void
108108 */
109109 public function setRenderer (RendererInterface $ renderer )
@@ -114,7 +114,7 @@ public function setRenderer(RendererInterface $renderer)
114114 /**
115115 * Get the parser responsible for generating the diff/opcodes.
116116 *
117- * @return cogpowered \FineDiff\Parser\ParserInterface
117+ * @return acedude \FineDiff\Parser\ParserInterface
118118 */
119119 public function getParser ()
120120 {
@@ -124,7 +124,7 @@ public function getParser()
124124 /**
125125 * Set the parser.
126126 *
127- * @param cogpowered \FineDiff\Parser\ParserInterface $parser
127+ * @param acedude \FineDiff\Parser\ParserInterface $parser
128128 * @return void
129129 */
130130 public function setParser (ParserInterface $ parser )
@@ -138,7 +138,7 @@ public function setParser(ParserInterface $parser)
138138 * Returns the opcode diff which can be used for example, to
139139 * to generate a HTML report of the differences.
140140 *
141- * @return cogpowered \FineDiff\Parser\Opcodes
141+ * @return acedude \FineDiff\Parser\Opcodes
142142 */
143143 public function getOpcodes ($ from_text , $ to_text )
144144 {
0 commit comments