5

In this source code i found this sub definition.

sub upload_file : Chained( 'base' ) : PathPart( 'upload-file' ) : Args( 0 ){

I don't understand what means those : colons and parameters. Can anybody point me to some docs?

innaM
  • 47,505
  • 4
  • 67
  • 87
novacik
  • 1,497
  • 1
  • 9
  • 19

1 Answers1

6

:Chained, :PathPArt and :Args are attributes provided by Catalyst.

cjm
  • 61,471
  • 9
  • 126
  • 175
ikegami
  • 367,544
  • 15
  • 269
  • 518
  • Huh... accpeting (ofc) - but the "subroutine attributes" are totally new thing for me. Just found this nice answer about them: (http://stackoverflow.com/a/987293/632407) – novacik Nov 19 '13 at 10:51