Development

Changeset 6464

You must first sign up to be able to contribute.

Changeset 6464

Show
Ignore:
Timestamp:
12/11/07 20:04:03 (1 year ago)
Author:
fabien
Message:

doc: fixed sfAction(s)::execute() signature (closes #2497)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • doc/trunk/book/06-Inside-the-Controller-Layer.txt

    r6117 r6464  
    182182    class indexAction extends sfAction 
    183183    { 
    184       public function execute(
     184      public function execute($request
    185185      { 
    186186        ... 
     
    193193    class listAction extends sfAction 
    194194    { 
    195       public function execute(
     195      public function execute($request
    196196      { 
    197197        ... 
     
    406406      } 
    407407 
    408       public function executeIndex(
     408      public function executeIndex($request
    409409      { 
    410410        ... 
    411411      } 
    412412 
    413       public function executeList(
     413      public function executeList($request
    414414      { 
    415415        ...